如何将PHP代码中的空格和换行符全部去除?
- 内容介绍
- 文章标签
- 相关推荐
本文共计495个文字,预计阅读时间需要2分钟。
PHP清除空格换行的方法:
1.使用function clearHtml($str) {...}函数清除;
2.使用strip_tags()函数去除;
3.使用正则表达式清除。
php清除空格换行的方法:1、通过“function clearHtml($str){...}”方法清除;2、通过“strip_tags()”函数去除;3、通过正则表达式清除。
本文操作环境:windows7系统、PHP7.1版,DELL G3电脑
php怎么清除空格换行?
PHP去除字符串空格与换行html标记
方法一
function clearHtml($str) { $str = trim($str); //清除字符串两边的空格 $str = preg_replace("/\t/","",$str); //使用正则表达式替换内容,如:空格,换行,并将替换为空。
本文共计495个文字,预计阅读时间需要2分钟。
PHP清除空格换行的方法:
1.使用function clearHtml($str) {...}函数清除;
2.使用strip_tags()函数去除;
3.使用正则表达式清除。
php清除空格换行的方法:1、通过“function clearHtml($str){...}”方法清除;2、通过“strip_tags()”函数去除;3、通过正则表达式清除。
本文操作环境:windows7系统、PHP7.1版,DELL G3电脑
php怎么清除空格换行?
PHP去除字符串空格与换行html标记
方法一
function clearHtml($str) { $str = trim($str); //清除字符串两边的空格 $str = preg_replace("/\t/","",$str); //使用正则表达式替换内容,如:空格,换行,并将替换为空。

