我对我制作的脚本感到非常沮丧,我在其中比较了时间戳。我可以看到时间戳完全不同。
- 对于 2012-10-02 03:06:21,时间戳为:1349190381
- 对于 2012-10-02 04:00:50,时间戳为:1349150450
我不明白为什么第二个时间戳低于第一个,即使时间更大。如何比较两个日期?
我通过 strtotime() 函数获取这些值。
澄清:我正在使用
$current_timestamp = strtotime(date('Y-m-d H:i:s'));
$till_date_timestamp = strtotime($database_object->till_date);