我将“星期四,2011年6月30日07:34:33 +0000”作为来自Twitter RSS Feed的时间戳。我的服务器在东部时间。我需要一些如何将其转换为unixtime。我不知道从哪里开始。我猜Twitter会在太平洋时间,除非它像24小时一样。
我还有另一个使用相同格式的RSS Feed。有任何想法吗?甚至不确定我会向谷歌输入什么来找到答案。
答案 0 :(得分:3)
使用strtotime()
功能:
date_default_timezone_set($user_timezone); // Set the user's timezone if you'd like
$time = strtotime("Thu, 30 Jun 2011 07:34:33 +0000") // Convert the time
echo date("l M j \- g:ia", $time); // Print it in any format you want!
为了将来参考,请在Google上尝试下载“php twitter date unix”:)
答案 1 :(得分:2)
使用strtotime()
;
例如:strtotime("Thu, 30 Jun 2011 07:34:33 +0000")