如何在PHP中将日期解析为上个月的同一天?
示例:
input Output
2018-07-25 -> 2018-06-25
2018-07-31 -> 2018-06-30 (because there is no 31)
我的代码
$d = "2018-07-25";
$xd = date_parse_from_format("y-m-d", $d last month);
$output_d = date_create($xd)->format('Y-m-d');
答案 0 :(得分:3)
<?php
$date = new DateTimeImmutable("2018-07-31");
$previous = $date->sub(new DateInterval('P1M'));
$lastMonth= $date->modify('last day of previous month');
if ($previous > $lastMonth) {
$previous = $lastMonth;
}
echo $previous ->format('Y-m-d');
此代码从当前日期减去一个月。如果大于上个月的最后一天,我们将使用上个月的最后一天。
答案 1 :(得分:-1)
回到一个月就像从现有日期减去一个月,因此借助strtotime和date我们可以解决这个问题。喜欢,
$a = "2018-07-25";
$b = date("Y-m-d",strtotime($a."-1 month"));
$b is 2018-06-25
希望这会有所帮助。