如何比较PHP中的两个时间戳?

时间:2017-08-03 09:31:25

标签: php

在我的代码中我有这样的场景:

count = 59;

我尝试使用unix时间戳,但它没有用。

2 个答案:

答案 0 :(得分:0)

试试这个,我不认为am,pm在最后是正确的格式,但是有了日期,你应该能够以这种方式测试它们:

$start = strtotime("03:00:00");
$end   = strtotime("20:00:00");

if($start > $end) {}

答案 1 :(得分:0)

使用此代码:

<?php
$start = strtotime("03:00:00");
$end   = strtotime("20:00:00");

if($start > $end) {
 echo "Yes";
}
else{
    echo "No";
}
?>

更多信息:http://php.net/manual/en/function.strtotime.php