在 PHP 中,可以使用 date() 函数来获取当前月份。以下是一些示例代码:
// 获取当前月份(数字)
$currentMonth = date('n');
echo $currentMonth;
// 获取当前月份(英文)
$currentMonth = date('F');
echo $currentMonth;
// 获取当前月份(带前导零)
$currentMonth = date('m');
echo $currentMonth;
这些代码将输出当前月份的不同格式。您可以根据自己的需求选择合适的格式。