如何从PHP中的当前时间戳以特定格式制作时间?

时间:2014-05-29 05:06:22

标签: php datetime

我有时间戳,如2014-05-26 16:39:32。从这张时间戳开始,我想在2014年5月26日下午4点39分做点什么。这有什么内置功能吗?或者我该怎么做?

3 个答案:

答案 0 :(得分:1)

echo date('h:i A, dS M Y', strtotime('2014-05-26 16:39:32')); // 04:39 PM, 26th May 2014 

没有导致零时尝试4:39

echo date('g:i A,dS M Y', strtotime('2014-05-26 16:39:32')); // 4:39 PM, 26th May 2014 

更多阅读手册: - http://php.net/manual/en/function.date.php

答案 1 :(得分:0)

echo date('g:i A,dS M Y',strtotime('2014-05-26 16:39:32'));

有关更多内容,您可以查看php中的date function

答案 2 :(得分:0)

像这样使用DateTime

$a = new DateTime("2014-05-26 16:39:32");
echo $a->format("h:i A, dS M Y");