如何将'Apr9,20037:33am'转换为unix时间戳?

时间:2010-02-23 17:54:43

标签: php

我有这种格式的日期:Apr9,20037:33am

如何变成时间戳?

2 个答案:

答案 0 :(得分:5)

  

strtotime() - 将任何英文文本日期时间描述解析为Unix时间戳

$unix_timestamp = strtotime('Apr 9, 2002 11:33 am')

编辑:Asker改变了问题,上面不再适用。

答案 1 :(得分:3)

如果您的格式无法解析,请查看:date_parse_from_format