首页 >php教程 >php手册 >PHP去掉html中的空行、空白函数

PHP去掉html中的空行、空白函数

WBOY
WBOY原创
2016-06-13 10:52:25944浏览

[php] 
function DeleteHtml($str){ 
                    $str = trim($str); 
                    $str = ereg_replace("\t","",$str); 
                    $str = ereg_replace("\r\n","",$str); 
                    $str = ereg_replace("\r","",$str); 
                    $str = ereg_replace("\n","",$str); 
                    return trim($str); 
                } 

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn