Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
$lastMonth = date('n')-1;
if(date('L') == 0 && $lastMonth==2 && date('j')>28){
$day=28;
}
elseif(date('L') == 1 && $lastMonth==2 && date('j')>29){
$day=29;
}
$lastmonth = mktime(0, 0, 0, date("m"), date("d")-30, date("Y"));
//или
$lastmonth = mktime(0, 0, 0, date("m")-1, date("d"), date("Y"));
$date_cur = date_create("2014-03-29");
$date_cur2 = date_create("2014-03-29");
$date_in_past1 = date_sub($date_cur, date_interval_create_from_date_string('30 days'));
$date_in_past2 = date_sub($date_cur2, date_interval_create_from_date_string('1 month'));
echo date_format($date_in_past1, "Y-m-d");
echo '<br>';
echo date_format($date_in_past2, "Y-m-d");