这篇文章主要为大家详细介绍了php 转换HTML代码函数示例,具有一定的参考价值,可以用来参考一下。
经测试代码如下:
/**
* 转换HTML代码函数
*
* @param unknown_type $content
* @param unknown_type $wrap 是否换行
*/
function htmlClean($content, $wrap = true) {
$content = htmlspecialchars($content);
if ($wrap) {
$content = str_replace("\n", '<br />', $content);
}
$content = str_replace(' ', ' ', $content);
$content = str_replace("\t", ' ', $content);
return $content;
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/99-0.html
注:关于php 转换HTML代码函数示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:HTML
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。