欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

文本转HTML的php代码

程序员文章站 2022-05-29 12:17:21
...
  1. //文本转HTML
  2. function Text2Html($txt)
  3. {
  4. $txt = str_replace(” ”,” ”,$txt);
  5. $txt = str_replace(“$txt = str_replace(“>”,”>”,$txt);
  6. $txt = preg_replace(“/[\r\n]{1,}/isU”,”
    \r\n”,$txt);
  7. return $txt;
  8. }
  9. ?>
复制代码