-1
當我使用功能nl2br類似結果我看到/ R/NPHP的nl2br顯示/ R/N
例如:
在一個textarea我寫Hello,
how are you?,
fine
PHP
echo nl2br($_POST['message']);
結果篩選
\r\nHello,
\r\nhow are you?
\r\nfin
我該如何解決?謝謝
當我使用功能nl2br類似結果我看到/ R/NPHP的nl2br顯示/ R/N
例如:
在一個textarea我寫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']);
我嘗試了所有的解決方案,但仍然沒有工作 –