用PHP进行UNIX时间转换

时间:2012-06-05 17:06:33

标签: php unix date time

我有这样的字符串:Thu, 27 May 2010 07:00:00 GMT

我想将它们转换为UNIX时间戳

有什么办法吗?

2 个答案:

答案 0 :(得分:2)

echo strtotime('Thu, 27 May 2010 07:00:00 GMT');

http://php.net/manual/en/function.strtotime.php

答案 1 :(得分:1)

是的,有办法!事实上,有多种方法可以做到这一点!;)

您可以使用strtotime();

$time_en = "Thu, 27 May 2010 07:00:00 GMT"
$time = strtotime($time_en);

http://fr2.php.net/manual/fr/function.strtotime.php