当前位置:Gxlcms > PHP教程 > 文本转HTML的php代码

文本转HTML的php代码

时间:2021-07-01 10:21:17 帮助过:5人阅读

  1. //文本转HTML
  2. function Text2Html($txt)
  3. {
  4. $txt = str_replace(” ”,” ”,$txt);
  5. $txt = str_replace(“<”,”<”,$txt);
  6. $txt = str_replace(“>”,”>”,$txt);
  7. $txt = preg_replace(“/[\r\n]{1,}/isU”,”
    \r\n”,$txt);
  8. return $txt;
  9. }
  10. ?>

人气教程排行