$somedate = "1980-02-15";
$otherdate = strtotime('+1 year', strtotime($somedate));
echo date('Y-m-d', $otherdate);
1981-02-15
和
$somedate = "1980-02-15";
$otherdate = strtotime('+2 year', strtotime($somedate));
echo date('Y-m-d', $otherdate);
輸出
1982-02-15
但
$somedate = "1980-02-15";
$otherdate = strtotime('+75 year', strtotime($somedate));
echo date('Y-m-d', $otherdate);
個
輸出
1970-01-01
如何解決?
如何〜75歲加入的「1980年2月15日的」使用日期時間類的指定字符串? – Zurechtweiser
查看我的更新回答 –
謝謝。我得到致命錯誤:調用未定義的函數date_add()。我正在使用PHP版本5.2.17。 – Zurechtweiser