📅  最后修改于: 2023-12-03 15:41:28.225000             🧑  作者: Mango
在 PHP 中,我们可以使用内置函数来获取当前月份。下面是两种获取当前月份的方法:
使用 date()
函数来获取当前月份。其中,格式字符 m
表示月份(带前导零),格式字符 n
表示月份(不带前导零)。
// 获取当前月份(带前导零)
$current_month = date('m');
echo $current_month; // 输出:07
// 获取当前月份(不带前导零)
$current_month = date('n');
echo $current_month; // 输出:7
使用 strtotime()
和 date()
函数来获取当前月份。其中,strtotime('now')
返回当前 Unix 时间戳,格式字符 m
表示月份(带前导零),格式字符 n
表示月份(不带前导零)。
// 获取当前月份(带前导零)
$current_month = date('m', strtotime('now'));
echo $current_month; // 输出:07
// 获取当前月份(不带前导零)
$current_month = date('n', strtotime('now'));
echo $current_month; // 输出:7
以上两种方法都可以用来获取当前月份。根据实际需求选择其中一种方法即可。