php替换换行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php替换换行相关的知识,希望对你有一定的参考价值。

php中替换换行符


//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替换换行的主要内容,如果未能解决你的问题,请参考以下文章

c语言中 将数组列换行 行换列

python给word添加换行换页符

用于打印输出的明智的 python 源代码行换行

将每 n 个换行符替换为文件中的制表符

SqlServer查询数据行中是不是有换行

php替换换行