一、PHP去除连续的空格和换行符:
PHP去除连续的空格和换行符:
http://www.zzsky.cn/build/content/1538.htm
php:去掉多余的空行:
http://blog.sina.com.cn/s/blog_a3b9b9040101gvb5.html
二、PHP中替换换行符:
实践OK如下:
//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);
From:http://blog.csdn.net/zgmu/article/details/54574772
PHP去除连续的空格和换行符:
http://www.zzsky.cn/build/content/1538.htm
php:去掉多余的空行:
http://blog.sina.com.cn/s/blog_a3b9b9040101gvb5.html
二、PHP中替换换行符:
实践OK如下:
//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);
From:http://blog.csdn.net/zgmu/article/details/54574772
作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:https://jackxiang.com/post/7075/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
最后编辑: jackxiang 编辑于2018-2-8 21:56
评论列表