PHP去掉html中的空行、空白函数
程序员文章站
2022-06-09 08:34:41
...
[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);
}
上一篇: 详解Oracle数据字典
推荐阅读
-
PHP字符串函数系列之nl2br(),在字符串中的每个新行 ( ) 之前插入 HTML 换行符br
-
PHP字符串函数系列之nl2br(),在字符串中的每个新行 ( ) 之前插入 HTML 换行符br
-
【PHP函数】PHP 去掉字符串中的转义符号
-
asp 去掉html中的table正则代码函数
-
巧用php中的array_filter()函数去掉多维空值的代码分享
-
php下删除字符串中HTML标签的函数
-
巧用php中的array_filter()函数去掉多维空值的代码分享_PHP教程
-
PHP去掉html中的空行、空白函数
-
PHP去掉html中的空行、空白函数
-
PHP 用 tidy_parse_file() 函数提取 HTML 中的链接