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.
当我使用函数 nl2br 时,我看到 /r /n
例子:
在我写的文本区域中
Hello, how are you?, fine
php
echo nl2br($_POST['message']);
结果显示
\r\nHello, \r\nhow are you? \r\nfin
我该如何解决?谢谢你
尝试这个:
$newmessage = preg_replace('#(\\\r|\\\r\\\n|\\\n)#','<br />', $_POST['message']);