gpt4 book ai didi

php - 如何检查 php 中的当前日期是否已过到期日期?

转载 作者:行者123 更新时间:2023-11-29 10:09:10 27 4
gpt4 key购买 nike

我必须检查到期日期是否已与当前日期一起传递,然后禁用该链接。我应该转换 strtotime 函数并检查吗?或者是否有任何简单的方法来检查它。我们不应该比较日期

$current_date = "2018-07-23 12:00:00";
$expiry date = "2018-07-22 12:00:00";

if($expiry date>$current_date){
$link = "<a href="http://www.example.com";
} else {
$link = "#";
}

最佳答案

我将按如下方式使用 strtotime():

$current_date = "2018-07-23 12:00:00";
$expiry date = "2018-07-22 12:00:00";

if (strtotime($expiry date) > strtotime($current_date)) {
$link = "<a href="http://www.example.com";
} else {
$link = "#";
}

关于php - 如何检查 php 中的当前日期是否已过到期日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51325019/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com