在我的代码中我有这样的场景:
count = 59;
我尝试使用unix时间戳,但它没有用。
答案 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";
}
?>