我有以下代码
$date = '2013-05-11 07:10:14';
echo date('F j, Y at h:i a', strtotime($date); //Not work; May 11, 2013 at 7:10 am
echo date('F j, Y h:i a', strtotime($date); // This will work when avoiding the `at` from date function.
我正在尝试在日期函数中附加字符串以将上述日期显示为May 11, 2013 at 7:10 am
. 如何使用预建日期功能以这种格式制作日期?