$whichwrong = "The following questions were not answered correctly: nn";
$whichwrong .= "Question Number: $questionNum || Your Answer: $userAnswers[$s][$q]n";
echo $whichwrong;
显示:
以下问题没有正确回答:2 ||你的答案:b问题编号:4 ||你的答案:c问题问题编号:1 ||你的答案:b问题编号:3 |你的答案:b问题编号:1 |你的答案:b问题编号:2 ||你的答案:a问题编号:1 ||你的答案:b问题编号:2 ||你的答案:b
为什么"n"
不能正常工作?
与此同时,这工作得很好:
$totalValue .= "Correct: {$correct}n";
$totalValue .= "Wrong: {$wrong}n";
使用nl2br
插入html换行符(<br />
)
echo nl2br($whichwrong);
正常的n
被浏览器视为正常的空白。
如果您在浏览器中查看它,则需要使用<br>
-您也可以使用nl2br()
函数。如果您在控制台中,请尝试rn