如何从 php 中指定的日期检测过去 3 小时?我有我最近的脚本,我不知道我的脚本哪里出错了。
$currentdate = "2012-05-29 21:00:01";
$dateassigned = "2012-05-29 18:00:00";
$startTime = mktime() - 3*3600;
$getdate = strtotime($date);
if($getdate >= $startTime) {
//if get date already past with 3 hour this will show yes
echo "yes";
} else {
echo "no";
}
对这个问题有什么帮助吗?谢谢你。