码迷,mamicode.com
首页 > Web开发 > 详细

[转]PHP中替换换行符

时间:2014-09-29 15:14:01      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   ar   sp   div   c   

FROM :http://www.cnblogs.com/siqi/archive/2012/10/12/2720713.html

//php 有三种方法来解决 
  
//1、使用str_replace 来替换换行 
$str = str_replace(array("\r\n", "\r", "\n"), "", $str); 
  
//2、使用正则替换 
$str = preg_replace(‘//s*/‘, ‘‘, $str); 
  
//3、使用php定义好的变量 (建议使用) 
$str = str_replace(PHP_EOL, ‘‘, $str);
// 转为前台可显示的换行, nl2br 的方向函数参考php手册
$str = "a
b
e
f
c";

echo nl2br($str);

 

[转]PHP中替换换行符

标签:style   blog   http   color   使用   ar   sp   div   c   

原文地址:http://www.cnblogs.com/Athrun/p/3999948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!