PHP html标签正则替换并可自定义正则规则
程序员文章站
2022-06-22 14:33:39
复制代码 代码如下:
<?php
function pregstring($str){
$strtemp = trim($str);
$search = array(
"|'|uis",
"|<script[^>].*?</script>|uis", // 去掉 javascript
"|\[字定义\].*\[/字定义\]|uis", // 去掉缩略图
"|<[\/\!].*?[^<>]*?>|uis", // 去掉 html 标记
"'>(quot|#34);'i", // 替换 html 实体
"'>(amp|#38);'i",
"|,|uis",
"|[\s]{2,}|is",
"[>nbsp;]isu",
"|[$]|uis",
);
$replace = array(
"`",
"",
"",
"",
"",
"",
"",
" ",
" ",
" ",
);
$text = preg_replace($search, $replace, $strtemp);
return $text;
}
echo pregstring(字符串); //使用方法
?>
复制代码 代码如下:
<?php
function pregstring($str){
$strtemp = trim($str);
$search = array(
"|'|uis",
"|<script[^>].*?</script>|uis", // 去掉 javascript
"|\[字定义\].*\[/字定义\]|uis", // 去掉缩略图
"|<[\/\!].*?[^<>]*?>|uis", // 去掉 html 标记
"'>(quot|#34);'i", // 替换 html 实体
"'>(amp|#38);'i",
"|,|uis",
"|[\s]{2,}|is",
"[>nbsp;]isu",
"|[$]|uis",
);
$replace = array(
"`",
"",
"",
"",
"",
"",
"",
" ",
" ",
" ",
);
$text = preg_replace($search, $replace, $strtemp);
return $text;
}
echo pregstring(字符串); //使用方法
?>