php 指定时间的的上个月 或者下个时间方法
可以不美丽,可以不可爱,可以不温柔,但是一定要诚实和善良。
经常会遇到,在给定具体的时间,求这个时间的上一个月时间,或者下一个月时间
请看代码
public function dada() {
$currentMonth = '20220601';
echo '指定时间 '.$currentMonth;
echo '<hr>';
echo '上个月一号 ';
echo date('Ymd', strtotime('-1 month', strtotime($currentMonth)));
echo '<hr>';
echo '下个月一号 ';
echo date('Ymd', strtotime('+1 month', strtotime($currentMonth)));
}
运营结果
你学会了吗?