如何将“Thu Oct 28 16:33:29 +0000 2010”改为“2010年10月28日下午10:33”
答案 0 :(得分:7)
将strtotime function与date function
结合使用echo date("jS F, Y", strtotime("11/25/10"));
// outputs 25th November, 2010
答案 1 :(得分:1)
$date = DateTime::createFromFormat('Thu Oct 28 16:33:29 +0000 2010', 'D M j h:m:s O Y');
echo $date->format('M d,Y, h:mA');
相关文档here