亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        用自定義函數(shù)解決帝國cms的簡介截取字符時出現(xiàn)html的問題

        字號:


            正如標(biāo)題所言帝國cms的簡介截取字符時出現(xiàn)html,針對這個問題,下面有個不錯的解決方法,主要是通過自定義函數(shù)來實現(xiàn)的,感興趣的朋友也可以嘗試操作下
            首先在 e/class/connect.php 文件中加入一個自定義函數(shù) 比如 NoHTML() 這個自己喜歡隨便設(shè)置
            //去除HTML標(biāo)記
            function NoHTML($string){
            $string = preg_replace("'<script[^>]*?>.*?</script>'si", "", $string);//去掉javascript
            $string = preg_replace("'<[/!]*?[^<>]*?>'si", "", $string); //去掉HTML標(biāo)記
            $string = preg_replace("'([rn])[s]+'", "", $string); //去掉空白字符
            $string = preg_replace("'&(quot|#34);'i", "", $string); //替換HTML實體
            $string = preg_replace("'&(amp|#38);'i", "", $string);
            $string = preg_replace("'&(lt|#60);'i", "", $string);
            $string = preg_replace("'&(gt|#62);'i", "", $string);
            $string = preg_replace("'&(nbsp|#160);'i", "", $string);
            return $string;
            }
            然后去帝國cms列表內(nèi)容模板修改代碼即可
            $r[smalltext]=esub(NoHTML($r[smalltext]),200,'......');
            $listtemp='<li><strong><a href="[!--titleurl--]">[!--title--]</a></strong><p>[!--smalltext--]</p></li>';
            這樣問題就解決了,很簡單吧.