次のようなdatetime2があります。
2012-10-06 22:00:00.0000000
(Microsoft Azureのphpを使用)そして、次のような形式にフォーマットする方法がわかりません:
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;