我试图在PHP格式的日期和时间。我希望格式如下:2014年5月15日上午9:15。除了"at"这个词,我什么都搞定了。如何在日期和时间之间连接单词"at"?谢谢。
<?php echo date('F j, Y g:i A',strtotime($editRow['user_create_date'])); ?>
转义字符:
<?php echo date('F j, Y at g:i A',strtotime($editRow['user_create_date'])); ?>