php清除style樣式的方法?這個(gè)問(wèn)題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見(jiàn)到的。希望通過(guò)這個(gè)問(wèn)題能讓你收獲頗深。下面是小編給大家?guī)?lái)的參考內(nèi)容,讓我們一起來(lái)看看吧!
成都創(chuàng)新互聯(lián)公司專注于企業(yè)營(yíng)銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、墨竹工卡網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5技術(shù)、商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)公司、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為墨竹工卡等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。php清除style的方法:1、使用“strip_tags”函數(shù)去掉HTML及PHP的標(biāo)記;2、使用“htmlspecialchars”函數(shù)將特殊字元轉(zhuǎn)成HTML格式;3、通過(guò)“ClearHtml”方法去除css style樣式。
清除html格式,去除html、css、js格式
strip_tags($str) 去掉 HTML 及 PHP 的標(biāo)記
語(yǔ)法: string strip_tags(string str);
傳回值: 字串
函式種類: 資料處理
內(nèi)容說(shuō)明 :
解析:本函式可去掉字串中包含的任何 HTML 及 PHP 的標(biāo)記字串。若是字串的 HTML 及 PHP 標(biāo)簽原來(lái)就有錯(cuò),例如少了大于的符號(hào),則也會(huì)傳回錯(cuò)誤。而本函式和 fgetss() 有著相同的功能
PHP去除html、css樣式、js格式的方法很多,但發(fā)現(xiàn),它們基本都有一個(gè)弊端:空格往往清除不了
經(jīng)過(guò)不斷的研究,最終找到了一個(gè)理想的去除html包括空格css樣式、js 的PHP函數(shù)。
PHP清除html、css、js格式并去除空格的PHP函數(shù)
function cutstr_html($string, $sublen) { $string = strip_tags($string); $string = preg_replace ('/\n/is', '', $string); $string = preg_replace ('/ | /is', '', $string); $string = preg_replace ('/ /is', '', $string); preg_match_all("/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/", $string, $t_string); if(count($t_string[0]) - 0 > $sublen) $string = join('', array_slice($t_string[0], 0, $sublen))."…"; else $string = join('', array_slice($t_string[0], 0, $sublen)); return $string; }
解析:這個(gè)函數(shù)既有去除html標(biāo)簽、css樣式、js、空格等格式的功能(格式化html文本)也有截取字符串的功能。
htmlspecialchars 將特殊字元轉(zhuǎn)成 HTML 格式
語(yǔ)法: string htmlspecialchars(string string);
傳回值: 字串
函式種類: 資料處理
內(nèi)容說(shuō)明
解析:本函式將特殊字元轉(zhuǎn)成 HTML 的字串格式 ( &....; )。最常用到的場(chǎng)合可能就是處理客戶留言的留言版了。
& (和) 轉(zhuǎn)成 & " (雙引號(hào)) 轉(zhuǎn)成 " < (小于) 轉(zhuǎn)成 < > (大于) 轉(zhuǎn)成 >
此函式只轉(zhuǎn)換上面的特殊字元,并不會(huì)全部轉(zhuǎn)換成 HTML 所定的 ASCII 轉(zhuǎn)換。
使用范例
htmlentities 將所有的字元都轉(zhuǎn)成 HTML 字串
語(yǔ)法: string htmlentities(string string);
傳回值: 字串
函式種類: 資料處理
內(nèi)容說(shuō)明
解析:本函式有點(diǎn)像 htmlspecialchars() 函式,但本函式會(huì)將所有 string 的字元都轉(zhuǎn)成 HTML 的特殊字集字串。不過(guò)在轉(zhuǎn)換后閱讀網(wǎng)頁(yè)原始碼的方面,會(huì)有很多困擾,尤其是網(wǎng)頁(yè)原始碼的中文字會(huì)變得不知所云,瀏覽器上看到的還是正常的。
php 去除html標(biāo)簽 js 和 css樣式 - 最愛(ài)用的一個(gè)PHP清楚html格式函數(shù)
Function ClearHtml($content) { $content = preg_replace("/]*>/i", "", $content); $content = preg_replace("/<\/a>/i", "", $content); $content = preg_replace("/]*>/i", "", $content); $content = preg_replace("/<\/div>/i", "", $content); $content = preg_replace("//i", "", $content);//注釋內(nèi)容 $content = preg_replace("/style=.+?['|\"]/i",'',$content);//去除樣式 $content = preg_replace("/class=.+?['|\"]/i",'',$content);//去除樣式 $content = preg_replace("/id=.+?['|\"]/i",'',$content);//去除樣式 $content = preg_replace("/lang=.+?['|\"]/i",'',$content);//去除樣式 $content = preg_replace("/width=.+?['|\"]/i",'',$content);//去除樣式 $content = preg_replace("/height=.+?['|\"]/i",'',$content);//去除樣式 $content = preg_replace("/border=.+?['|\"]/i",'',$content);//去除樣式 $content = preg_replace("/face=.+?['|\"]/i",'',$content);//去除樣式 $content = preg_replace("/face=.+?['|\"]/",'',$content);//去除樣式只允許小寫(xiě)正則匹配沒(méi)有帶 i 參數(shù) return $content; }感謝各位的閱讀!看完上述內(nèi)容,你們對(duì)php清除style樣式的方法大概了解了嗎?希望文章內(nèi)容對(duì)大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道。
網(wǎng)站標(biāo)題:php清除style樣式的方法-創(chuàng)新互聯(lián)
標(biāo)題鏈接:http://weahome.cn/article/doddpi.html