我想以这种格式格式化 MySql 结果中的日期(代码是我在网站上其他地方使用的代码,而不是我尝试使用的实际代码,我只想要这种格式)......
date("j F, Y", strtotime($result['comm_date']));
我已经在网站的其他地方做过,但不知道如何格式化以下结果。它是 for 循环的一部分,$str_comments 最终会被回显以显示带有用户名和评论日期的评论列表。
$str_comments .= "<span class='comment'>" . mysql_result($result, $j, 'comment') . "</span>";
$str_comments .= " by " . mysql_result($result, $j, 'username');
$str_comments .= " on " . mysql_result($result, $j, 'comm_date') . "</br><br/>";
任何指针将不胜感激。