程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP 清除HTML代碼、空格、回車換行符的函數

PHP 清除HTML代碼、空格、回車換行符的函數

編輯:PHP綜合
在寫采集程序時,往往需要對采集回來的內容進行處理,比如刪除Html代碼、去掉多余的空格、刪除回車換行符等等。下面就寫一個函數來處理。
function DeleteHtml($str)
{
$str = trim($str);
$str = strip_tags($str,"");
$str = ereg_replace("\t","",$str);
$str = ereg_replace("\r\n","",$str);
$str = ereg_replace("\r","",$str);
$str = ereg_replace("\n","",$str);
$str = ereg_replace(" "," ",$str);
return trim($str);
}

可以根據需要對這個函數進行擴充修改。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved