我需要在\n
this.value.split
$rows .= "<textarea onkeyup='this.rows = (this.value.split(\"\n\").length||1);' ...
我缩短了代码,因此更容易阅读。
PHP将其解析为新行。如何重写此字符串以便实际打印\n
??
答案 0 :(得分:5)
两种方式:
echo "\\n"; //escape it
echo '\n'; //use single quotes
答案 1 :(得分:2)