您好,登錄后才能下訂單哦!
小編給大家分享一下自定義函數(shù)如何解決帝國(guó)cms的簡(jiǎn)介截取字符時(shí)出現(xiàn)html的問(wèn)題,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
我的解決方法如下,寫(xiě)了個(gè)函數(shù)加進(jìn)去,大家看看是否可行,有咩有問(wèn)題,我感覺(jué)還行
首先在 e/class/connect.php 文件中加入一個(gè)自定義函數(shù) 比如 NoHTML() 這個(gè)自己喜歡隨便設(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("'([\r\n])[\s]+'", "", $string); //去掉空白字符 $string = preg_replace("'&(quot|#34);'i", "", $string); //替換HTML實(shí)體 $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; }
推薦學(xué)習(xí)《帝國(guó)cms教程》
然后去列表內(nèi)容模板修改代碼即可
代碼如下:
$r[smalltext]=esub(NoHTML($r[smalltext]),200,'......');$listtemp='<li><strong><a href="[!--titleurl--]"> [!--title--]</a></strong><p>[!--smalltext--]</p></li>';
這樣問(wèn)題就解決了,很簡(jiǎn)單吧.
由于是中英文的網(wǎng)站,網(wǎng)站名稱(chēng)需要用到標(biāo)題,所以這樣修改就很方便了。
看完了這篇文章,相信你對(duì)自定義函數(shù)如何解決帝國(guó)cms的簡(jiǎn)介截取字符時(shí)出現(xiàn)html的問(wèn)題有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。