前端之家收集整理的这篇文章主要介绍了
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;
}
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/529196.html