-1

我有一个 datetime2,它看起来像这样:

2012-10-06 22:00:00.0000000 

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

October 06, 2012 at 22:00

有任何想法吗?

4

3 回答 3

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
于 2012-10-04T12:33:54.713 回答
0

请参考此Date()strtotime()函数来实现这一点。

于 2012-10-04T12:30:22.050 回答
0
$currentdate="2012-10-06 22:00:00.0000000";
$timestamp=strtotime($currentdate);
$newdate=date("F d Y g:i",$timestamp);
echo $newdate;
于 2012-10-04T12:33:11.150 回答