user1838343
0
Q:

php last day of month

$currentMonth = date('M');// if number, then date('m');
//Last month
$lastMonth = Date("F", strtotime("first day of previous month");
$nextMonth = Date("F", strtotime("first day of next month");
3
$a_date = "2009-11-23";
echo date("Y-m-t", strtotime($a_date));
0
$lastDay = date('t',strtotime('last month'));

print_r($lastDay);
0
$lastDateOfNextMonth =strtotime('last day of next month') ;

$lastDay = date('d/m/Y', $lastDateOfNextMonth);

 

print_r($lastDay);
0
//Last month
$lastMonth = Date("F", strtotime("first day of previous month");
$nextMonth = Date("F", strtotime("first day of next month");
0

New to Communities?

Join the community