all dates of previous month php code example

Example 1: last day of previous month in php

$lastDay = date('t',strtotime('last month'));

print_r($lastDay);

Example 2: php date function get previous month

$tgl = '25 january 2012';

$prevmonth = date("M Y",mktime(0,0,0,date("m", strtotime($tgl))-1,1,date("Y", strtotime($tgl))));
echo $prevmonth;

Example 3: get last month using php

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

Tags:

Php Example