大家好,我想獲取當前日期的月份。PHP獲取日期的當前月份
這是我的嘗試:
<?php
$transdate = date('m-d-Y', time());
echo $transdate;
$month = date('m', strtotime($transdate));
if($month == "12"){
echo "<br />December is the month :)";
} else {
echo "<br /> The month is probably not December";
}
?>
但結果是錯誤的,它應該顯示十二月是本月:0
任何想法?謝謝。
它對我來說工作正常 –
爲什麼你不運行第二個日期功能與時間()作爲第二個參數,你運行兩次? :? –
'if($ month == 12)'。 12應該是整數不是字符串 –