php last date of the 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: getting last day of next month in php
$lastDateOfNextMonth =strtotime('last day of next month') ;
$lastDay = date('d/m/Y', $lastDateOfNextMonth);
print_r($lastDay);