Answers for "php get current month 2 digits"

PHP
4

+1 month php

$time = strtotime("2010.12.11");
$final = date("Y-m-d", strtotime("+1 month", $time));
Posted by: Guest on August-07-2020
0

php strftime year 2 digits

%y	Two digit representation of the year	Example: 09 for 2009, 79 for 1979
%Y	Four digit representation for the year	Example: 2038
Posted by: Guest on November-21-2020

Browse Popular Code Answers by Language