我使用 strtotime()找到了时差,它可以工作。 但是,当我使用 if(){} 检查条件时,条件始终为假(即使在我尝试使条件为true时也是如此)。 代码如下。请帮助找到解决方案。
$diff = strtotime(date('Y-m-d H:i:s')) - strtotime('2019-01-01');
$new_diff = (int)$diff;
$max = (int)60;
if($new_diff > $max){
session_unset();
session_destroy();
header("location:index.php");
}else{
header("location:add.php");
}
(时差显示在“秒”中)
但是,我的预期结果是重定向到 if(){} 。