我有一个 datetime2,它看起来像这样:
2012-10-06 22:00:00.0000000
(使用 php for Microsofts Azure),我不知道如何将其格式化为:
October 06, 2012 at 22:00
有任何想法吗?
使用strtotime()
:
echo date('F d, Y \a\t H:i', strtotime('2012-10-06 22:00:00.0000000'));
// October 06, 2012 at 22:00
请参考此Date()和strtotime()函数来实现这一点。
$currentdate="2012-10-06 22:00:00.0000000";
$timestamp=strtotime($currentdate);
$newdate=date("F d Y g:i",$timestamp);
echo $newdate;