在 PHP 中,可以使用 date() 函數(shù)來(lái)獲取當(dāng)前月份。以下是一些示例代碼:
// 獲取當(dāng)前月份(數(shù)字)
$currentMonth = date('n');
echo $currentMonth;
// 獲取當(dāng)前月份(英文)
$currentMonth = date('F');
echo $currentMonth;
// 獲取當(dāng)前月份(帶前導(dǎo)零)
$currentMonth = date('m');
echo $currentMonth;
這些代碼將輸出當(dāng)前月份的不同格式。您可以根據(jù)自己的需求選擇合適的格式。