使用PHP 的DateTime 類別檢查時間是否在兩個時間值之間
此程式碼片段探討了一種確定給定時間是否落在的解決方案在指定範圍內,以日出和日落時間範圍表示。
程式碼:
<code class="php">$current_time = "4:59 pm"; $sunrise = "5:42 am"; $sunset = "6:26 pm"; $date1 = DateTime::createFromFormat('h:i a', $current_time); $date2 = DateTime::createFromFormat('h:i a', $sunrise); $date3 = DateTime::createFromFormat('h:i a', $sunset); if ($date1 > $date2 && $date1 < $date3) { echo 'The current time is between sunrise and sunset.'; }</code>
說明:
參考:
以上是如何使用 PHP 的 DateTime 類別檢查時間是否在特定時間範圍內?的詳細內容。更多資訊請關注PHP中文網其他相關文章!