使用strtotime将字符串转换为PHP中的时间戳

时间:2011-07-01 09:19:20

标签: php date strtotime

尝试更改字符串

Tue Jun 28 15:24:51 +0000 2011

到php unix时间。

找到此Parsing Twitter API Datestamp strtotime 为我返回-1。

echo strtotime('Fri Apr 09 12:53:54 +0000 2010');

有什么想法吗?可能存在问题?

由于

这个恐龙使用PHP 4.4.9,所以代码不起作用。 我添加了

AddType x-mapp-php5 .php

它开始起作用了:)

1 个答案:

答案 0 :(得分:2)

$date = strtotime('Fri Apr 09 12:53:54 +0000 2010');
echo date('d/m/Y',$date);
echo $date;

适合我。检查PHP版本兼容性:
strtotime() api