php get last day of month code example
Example 1: get last month php
$currentMonth = date('M');
$lastMonth = Date("F", strtotime("first day of previous month");
$nextMonth = Date("F", strtotime("first day of next month");
Example 2: last day of previous month in php
$lastDay = date('t',strtotime('last month'));
print_r($lastDay);
Example 3: php last day of month
$a_date = "2009-11-23";
echo date("Y-m-t", strtotime($a_date));
Example 4: getting last day of next month in php
$lastDateOfNextMonth =strtotime('last day of next month') ;
$lastDay = date('d/m/Y', $lastDateOfNextMonth);
print_r($lastDay);
Example 5: get day of month php
cal_days_in_month(CAL_GREGORIAN, $month, $year)
echo (cal_days_in_month(CAL_GREGORIAN, 2, 2020));
function days_in_month($month, $year) {
return $month == 2 ? ($year % 4 ? 28 : ($year % 100 ? 29 : ($year % 400 ? 28 : 29))) : (($month - 1) % 7 % 2 ? 30 : 31);
}
echo (date('t', strtotime('2020-02-1')));
Example 6: get last month using php
$lastMonth = Date("F", strtotime("first day of previous month");
$nextMonth = Date("F", strtotime("first day of next month");