php空格替换成换行符

<?php
$str = str_replace(chr(32),chr(13),$str);
//$str = str_replace(chr(32),chr(13).chr(10),$str);
//$str = str_replace(chr(32),"\n",$str);
//等等,写法很多,也可以用正则
参考网址:http://www.rr555.com/news/newsview.php?nid=1875

//chr(32) -- 空隔
//chr(13) -- 回车,等价于\r
//chr(10)--换行,等价于\n

你可能感兴趣的:(PHP,换行符)