$dateFormatted = date("l, M j g:i a", strtotime($day .' '. $preferTime) );
很簡單,但無法找到它PHP「在」日期加字()
我想單詞「爲」我一個月時間,明明「a」和「T」之間被保留。我能做什麼?
我應該這樣做嗎?必須有更聰明的方式
$dateFormatted1 = date("l, M j ", strtotime($day .' '. $preferTime) );
$dateFormatted2 = date("g:i a", strtotime($day .' '. $preferTime) );
echo $dateFormmated1 . 'at' $dateFormatted2;
http://php.net/date#example-2294 – cmbuckley