熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP刪除HTMl標簽的實現代碼

2022-06-13   來源: 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); //返回字符串
}


From:http://tw.wingwit.com/Article/program/PHP/201311/21178.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.