<?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 html 태그의 정기적 교체 및 사용자 정의 가능한 일반 규칙과 관련된 더 많은 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!