如何检查到期日期是否与PHP中的当前日期一起传递?

时间:2018-07-13 12:22:55

标签: php mysql

我必须检查到期日期与当前日期一起传递,然后禁用该链接。我应该转换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 = "#";
}

1 个答案:

答案 0 :(得分:1)

我将使用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 = "#";
}