<i id='wBxs3'><tr id='wBxs3'><dt id='wBxs3'><q id='wBxs3'><span id='wBxs3'><b id='wBxs3'><form id='wBxs3'><ins id='wBxs3'></ins><ul id='wBxs3'></ul><sub id='wBxs3'></sub></form><legend id='wBxs3'></legend><bdo id='wBxs3'><pre id='wBxs3'><center id='wBxs3'></center></pre></bdo></b><th id='wBxs3'></th></span></q></dt></tr></i><div id='wBxs3'><tfoot id='wBxs3'></tfoot><dl id='wBxs3'><fieldset id='wBxs3'></fieldset></dl></div>

<legend id='wBxs3'><style id='wBxs3'><dir id='wBxs3'><q id='wBxs3'></q></dir></style></legend>

      <tfoot id='wBxs3'></tfoot>
      • <bdo id='wBxs3'></bdo><ul id='wBxs3'></ul>

        <small id='wBxs3'></small><noframes id='wBxs3'>

        PHP转换文本框内容为HTML格式的办法

        时间:2023-09-02

        <small id='UTJNP'></small><noframes id='UTJNP'>

          <bdo id='UTJNP'></bdo><ul id='UTJNP'></ul>
          1. <i id='UTJNP'><tr id='UTJNP'><dt id='UTJNP'><q id='UTJNP'><span id='UTJNP'><b id='UTJNP'><form id='UTJNP'><ins id='UTJNP'></ins><ul id='UTJNP'></ul><sub id='UTJNP'></sub></form><legend id='UTJNP'></legend><bdo id='UTJNP'><pre id='UTJNP'><center id='UTJNP'></center></pre></bdo></b><th id='UTJNP'></th></span></q></dt></tr></i><div id='UTJNP'><tfoot id='UTJNP'></tfoot><dl id='UTJNP'><fieldset id='UTJNP'></fieldset></dl></div>
              <tfoot id='UTJNP'></tfoot>

                    <tbody id='UTJNP'></tbody>
                  <legend id='UTJNP'><style id='UTJNP'><dir id='UTJNP'><q id='UTJNP'></q></dir></style></legend>

                • 本文实例讲述了PHP转换文本框内容为HTML格式的方法。分享给大家供大家参考,具体如下:

                  有时候我们将会用到将多行文本框中输入的内容以html格式显示出来,这样子可以保持原来的文本格式,如换行、回车等。可以通过下面的函数实现:

                  function shtm($design_str)
                  {
                   $str=trim($design_str); // 取得字串同时去掉头尾空格和空回车
                   //$str=str_replace("<br>","",$str); // 去掉<br>标签
                   //$str="<p>".trim($str); // 在文本头加入<p>
                   $str=str_replace("\r\n","<br>",$str); // 用p标签取代换行符
                   //$str.="</p>\n"; // 文本尾加入</p>
                   $str=str_replace("<p></p>","",$str); // 去除空段落
                   $str=str_replace("\n","",$str); // 去掉空行并连成一行
                   $str=str_replace("</p>","</p>\n",$str); //整理html代码
                   return $str;
                  }
                  
                  上一篇:判断文章是否被百度/360/搜狗收录的PHP示例代码 下一篇:没有了

                  相关文章

                • <tfoot id='JIapG'></tfoot>

                    <bdo id='JIapG'></bdo><ul id='JIapG'></ul>

                  <i id='JIapG'><tr id='JIapG'><dt id='JIapG'><q id='JIapG'><span id='JIapG'><b id='JIapG'><form id='JIapG'><ins id='JIapG'></ins><ul id='JIapG'></ul><sub id='JIapG'></sub></form><legend id='JIapG'></legend><bdo id='JIapG'><pre id='JIapG'><center id='JIapG'></center></pre></bdo></b><th id='JIapG'></th></span></q></dt></tr></i><div id='JIapG'><tfoot id='JIapG'></tfoot><dl id='JIapG'><fieldset id='JIapG'></fieldset></dl></div>
                • <legend id='JIapG'><style id='JIapG'><dir id='JIapG'><q id='JIapG'></q></dir></style></legend>
                • <small id='JIapG'></small><noframes id='JIapG'>