在PHP 中,您可以輕鬆地使用DateTime 類別來確定當前日期/時間已超出特定日期/時間。
請考慮以下範例:
<code class="php">if (new DateTime() > new DateTime("2010-05-15 16:00:00")) { # The current time exceeds 2010-05-15 16:00:00. # In other words, it has passed. }</code>
此程式碼使用 DateTime 建構函數,其中參數是遵守特定解析規則的字串。透過比較目前日期/時間與指定日期/時間(05/15/2010 下午 4 點),您可以確定目前時間是否超過指定時刻。
以上是如何在 PHP 中檢查當前日期/時間是否已超過特定日期/時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!