我有一个代码,但找不到错误在哪里。我有即将发生的事件和当前时间。如果我将我的事件转换为时间戳,它会小于当前时间戳。也许你能帮助我。
我的代码如下:
<?php
date_default_timezone_set('Etc/GMT');
$upcoming = "2012.09.05 23:50";
$current = time();
echo "Upcoming: " . $upcoming . " | Timestamp:" . mktime(23, 50, 0, 09, 05, intval(date("Y")));
echo "<br>Current: " . time();
echo "<br>Current SIM: " . mktime(date("H"), date("i"), date("s"), date("m"), date("d"), date("Y"));
?>
将输出:
Upcoming: 2012.09.05 23:50 | Timestamp:1323129000
Current: 1346855221
Current SIM: 1346855220
当前 > 即将到来的时间戳。(???) 谢谢!