在 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中文网其他相关文章!