Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个简单的问题,我正在尝试从 Html 表单中获取文本,然后在每个请求上添加一个 '\n',对于换行符,我尝试过这个:
'".$customtext."'.'\n'
或这个 :
'".$customtext.'\n'"'
没有运气,有没有办法做到这一点?
谢谢 。
您需要使用双引号(例如:$var_to_print = $str . "\n";) // 使用简单引号将不起作用 '
我不确定你是否正在寻找这个,或者你可能想使用一段时间/foreach bucle 将每个“\n”替换为“<br>”
希望能帮助到你!
试试$customtext."\n"——双引号应该可以解决问题。编辑:如果你想在 HTML 代码中输出,你可以看看 function nl2br。
$customtext."\n"
nl2br