程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP刪除HTMl標簽的實現代碼

PHP刪除HTMl標簽的實現代碼

編輯:關於PHP編程
    本篇文章是對PHP刪除HTMl標簽的實現代碼進行了詳細的分析介紹,需要的朋友參考下   復制代碼 代碼如下:


    /**
    * 取出html標簽
    *
    * @access public
    * @param string str
    * @return string
    *
    */
    function deletehtml($str) {
    $str = trim($str); //清除字符串兩邊的空格
    $str = strip_tags($str,"<p>"); //利用php自帶的函數清除html格式。保留P標簽
    $str = preg_replace("/t/","",$str); //使用正則表達式匹配需要替換的內容,如:空格,換行,並將替換為空。
    $str = preg_replace("/rn/","",$str);
    $str = preg_replace("/r/","",$str);
    $str = preg_replace("/n/","",$str);
    $str = preg_replace("/ /","",$str);
    $str = preg_replace("/ /","",$str); //匹配html中的空格
    return trim($str); //返回字符串
    }

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved