Home  >  Article  >  Backend Development  >  PHP html tag regular replacement and customizable regular rules

PHP html tag regular replacement and customizable regular rules

高洛峰
高洛峰Original
2017-01-20 09:44:461324browse

].*?|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(字符串); //使用方法 
?>

For more articles related to PHP html tag regular replacement and customizable regular rules, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn