目前我已经展示:12月9日20:02,格式代码为php:the_date(' j F G:i');
但我想在"添加字符串"如:7月12日 at 12:43
答案 0 :(得分:0)
对不起,上课是对的。这没有提供正确的输出。但是你可以这样做:
$date = explode(' ', date('d F g:i'));
$new_date = $date[0] . ' ' . $date[1] . ' at ' . $date[2];
echo $new_date;