PHP的strtotime("2015-05-11 00:03:24 UTC+1")给了我unix时间戳1431302604。但是时间戳应该是1431299004。
strtotime("2015-05-11 00:03:24 UTC+1")
1431302604
我说错了吗?或者如何使用PHP5.4正确解析此日期。
发布于 2015-08-14 22:59:25
试试strtotime("2015-05-11 00:03:24+01:00")
strtotime("2015-05-11 00:03:24+01:00")
https://stackoverflow.com/questions/32019380
相似问题