PHP转换09/23/2014 11:42:27 pm进入Epoch时间戳

时间:2014-09-24 07:56:03

标签: timestamp epoch

Newb问题,但是我在如何将这样格式化的日期转换为纪元时遇到了令人难以置信的麻烦。

1 个答案:

答案 0 :(得分:1)

它很容易使用strtotime('09/23/2014 11:42:27 pm')但它依赖于时区

对我来说欧洲/布拉格

date_default_timezone_set('Europe/Prague');
echo @strtotime('09/23/2014 11:42:27 pm');

使用此工具核对:http://www.freeformatter.com/epoch-timestamp-to-date-converter.html