PHP把html代码转换成普通字符串,在页面中显示

可以用下面这个函数把php中的html转化成普通的文本:

<?php
 function unhtml($content){								//定义自定义函数的名称
	$content=htmlspecialchars($content);                //转换文本中的特殊字符
	$content=str_ireplace(chr(13),"<br>",$content);		//替换文本中的换行符
    $content=str_ireplace(chr(32)," ",$content);		//替换文本中的 
    $content=str_ireplace("[_[","<",$content);			//替换文本中的小于号
    $content=str_ireplace(")_)",">",$content);			//替换文本中的大于号
    $content=str_ireplace("|_|"," ",$content);				//替换文本中的空格
	return trim($content);								//删除文本中首尾的空格
}
?>


你可能感兴趣的:(html,PHP,function)