我需要获取当前月份的变量(在这种情况下输出为数字" 1") - 并输出数字" 02"和" 03"。我试图这样做:
<?php $current_month = "{current_time format="%m"}";
$next_month = "0".$current_month++;
$third_month = "0".$next_month++;
?>
但这改变了我不想做的原始变量。我该如何做到这一点?
感谢您的帮助。
答案 0 :(得分:3)
只需使用+ 1
:
<?php
$current_month = "{current_time format="%m"}";
$next_month = "0". ($current_month + 1);
$third_month = "0". ($next_month + 2); ?>