如何正确减去当月的1个月?
$current_month1 = date('m');
$current_month = $current_month1-1;
echo $current_month;
//current ouput
6
//desired output
06
答案 0 :(得分:2)
答案 1 :(得分:1)
答案 2 :(得分:1)
m
中的date
运算符会为您提供:
echo date('m', strtotime('now - 1 month'));
提供06
。