php删除换行符的方法:可以利用php定义好的变量PHP_EOL来实现,如【str_replace(PHP_EOL, '', $str);】。也可以利用正则来删除,如【preg_replace('//s*/', '', $str);】。
具体方法:
(推荐教程: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); $str = str_replace(PHP_EOL, '', $str);相关推荐:php培训
以上就是php如何删除换行符的详细内容!
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did53862
php如何删除换行符
阅读:43次