PHP去掉html中的空行、空白函数_PHP教程
程序员文章站
2022-04-09 11:52:10
...
[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);
}
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);
}
推荐阅读
-
深入解析php中的foreach函数_PHP教程
-
PHP中exec函数和shell_exec函数的区别,execshell_exec_PHP教程
-
PHP函数in_array()如何检查数组中的值_PHP教程
-
php-Arrays函数-array_key_exists-检查给定的键名或索引是否存在于数组中_PHP教程
-
php中把美国时间转为北京时间的自定义函数分享,美国北京时间_PHP教程
-
php去掉URL网址中带有PHPSESSID的配置方法,urlphpsessid_PHP教程
-
php中Curl函数常用的两个例子_PHP教程
-
探讨Smarty中如何获取数组的长度以及smarty调用php函数的详解_PHP教程
-
WordPress开发中的get_post_custom()函数使用解析,wordpressgetpost_PHP教程
-
在smarty中调用php内置函数的方法_PHP教程