Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经搜索但找不到适合我的案例的解决方案。
MYSQL中记录了一个日期,例如它返回:(2013-10-18 15:42:06这是什么格式?)
2013-10-18 15:42:06
所以我需要得到current date(包括小时、分钟和秒)。
current date
然后,减去MYSQL date - CURRENT date.
MYSQL date - CURRENT date
结果,我将设置为 jQuery 倒计时。
谢谢!
这应该有效:
$seconds_remaining = strtotime('2013-10-18 15:42:06') - time();
尽管如果您碰巧知道 MySQL 时间对应的时区,那么您应该将其附加到传递给的参数中strtotime(),例如,'2013-10-18 15:42:06 GMT'
strtotime()
'2013-10-18 15:42:06 GMT'