格式化Datetime2对象

时间:2012-10-04 12:27:23

标签: php azure

我有一个datetime2,如下所示:

2012-10-06 22:00:00.0000000 

(使用php for Microsofts Azure)我不知道如何将其格式化为:

October 06, 2012 at 22:00

有什么想法吗?

3 个答案:

答案 0 :(得分:2)

使用strtotime()

echo date('F d, Y \a\t H:i', strtotime('2012-10-06 22:00:00.0000000'));
// October 06, 2012 at 22:00

答案 1 :(得分:0)

请参阅此Date()strtotime()功能以实现此目的。

答案 2 :(得分:0)

$currentdate="2012-10-06 22:00:00.0000000";
$timestamp=strtotime($currentdate);
$newdate=date("F d Y g:i",$timestamp);
echo $newdate;