如何刪除字符串中的「\ n」?
我使用了3個方法波紋管,接縫只有「\ s +」的作品,但我只想刪除\ n,並非所有的空間,該怎麼做?
需要幫助,這個問題困擾了我很長一段時間。我如何刪除字符串在PHP中的「 n」?
$str="<p>
hello<br>
world
</p>";
//$str=str_replace("\n","",$str);
$str=preg_replace("@\[email protected]","",$str);
//$str=preg_replace("@\[email protected]"," ",$str);
echo $str;
嘗試使用[nl2br()](http://php.net/manual/en/function.nl2br.php) – diEcho 2013-05-10 07:18:10