PHP中定義日期邊界
P粉546257913
2023-08-08 19:34:46
<p>我使用了一些日期函數,這些日期是圍繞1792-1806年的法國共和國。但我想知道(PHP8)日期函數是否可以處理這些日期。 </p>
<pre class="brush:php;toolbar:false;">function CheckFrDate($CheckDate){
$BeginFrDate = date_create_from_format('d/m/Y', '22/09/1792');
$EndFrDate = date_create_from_format('d/m/Y', '22/09/1806');
if (
$CheckDate->getTimestamp() > $BeginFrDate->getTimestamp() &&
$CheckDate->getTimestamp() < $EndFrDate->getTimestamp()){
return 1;
}else{
return -1;
}
}</pre>
<p>所以像1793年9月23日這樣的日期應該沒問題。但我的函數一直回傳false。 </p>
如果date函數傳回false,則可以透過呼叫var_dump(date_get_last_errors())來取得詳細的錯誤訊息。
更多資訊:https://www.php.net/manual/en/function.date-get-last-errors.php