文本转HTML的php代码

发布时间:2020-04-21编辑:脚本学堂
文本转HTML的php代码,有需要的朋友参考下吧。
完整代码。
复制代码 代码如下:
<php
//文本转HTML
function Text2Html($txt)
{
$txt = str_replace(”  ”,” ”,$txt);
$txt = str_replace(“<”,”&lt;”,$txt);
$txt = str_replace(“>”,”&gt;”,$txt);
$txt = preg_replace(“/[rn]{1,}/isU”,”<br/>rn”,$txt);
return $txt;
}
?>