标签: php datetime
某些时间格式如:Sat, 19 Feb 2011 09:02:04 -0800, 如何将DATE_ATOM转移到unix时间(十位数字)?感谢。
Sat, 19 Feb 2011 09:02:04 -0800
答案 0 :(得分:3)
$timestamp = strtotime('Sat, 19 Feb 2011 09:02:04 -0800');
http://www.php.net/manual/en/datetime.formats.php
http://php.net/manual/en/function.strtotime.php
答案 1 :(得分:2)
试试这个 strtotime('Sat, 19 Feb 2011 09:02:04 -0800');
strtotime('Sat, 19 Feb 2011 09:02:04 -0800');