php 将html标签替换为特定字符
内容摘要
这篇文章主要为大家详细介绍了php 将html标签替换为特定字符,具有一定的参考价值,可以用来参考一下。
php替换html标签为特定字符,对此感兴趣的朋友,看看idc笔记做的技术笔记。
php替换html标签为特定字符,对此感兴趣的朋友,看看idc笔记做的技术笔记。
文章正文
这篇文章主要为大家详细介绍了php 将html标签替换为特定字符,具有一定的参考价值,可以用来参考一下。
php替换html标签为特定字符,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
/**
* 替换html标签为特定字符
*
* @param
* @arrange (www.idcnote.com)
* $content = text you want to parse
* $replacement = what you want to replace the tags with (Defaults to a space).
**/
function tagStripReplace($content, $replacement = " "){
return preg_replace("~<(w*[^>])*>~", $replacement, $content);
}
echo tagStripReplace("<p>I like pizza</p>",";");
echo tagStripReplace("<p>I like pizza</p><p>Do you?</p>");
/*** 来自php教程(www.idcnote.com) ***/
注:关于php 将html标签替换为特定字符的内容就先介绍到这里,更多相关文章的可以留意
代码注释