Home > Backend Development > PHP Tutorial > 兼容所有系统的PHP去除换行符正则和PHP_EOL变量的使用

兼容所有系统的PHP去除换行符正则和PHP_EOL变量的使用

WBOY
Release: 2016-06-20 13:02:54
Original
929 people have browsed it

兼容所有系统的PHP去除换行符正则和PHP_EOL变量的使用

PHP去除掉HTML或字符串中带有换行符的方法,这个针对LINUX、WINDOWS、MAC系统下都是支持

$v["content"] = str_replace(PHP_EOL, '', $v["content"]);  

$v["content"] = preg_replace('/ | /', '', $v["content"]);  
Copy after login

上面的是PHP_EOL是跟据系统来识别换行符的。

但是为了保险,所以又在下面用了一个正则使用preg_replace再欠替换掉常见的 或 换行符,所以基本上都可以解决的。

 


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template