程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP移除字符串超鏈接文本的正則表達式

PHP移除字符串超鏈接文本的正則表達式

編輯:關於PHP編程

由於N久之前做了一些非常不好的動作導致網站內容頁面有一些垃圾數據,今天早上整了一個移除字符串超鏈接文本方法,下面我結合正則來處理。

下面實例的功能是過濾所有的html標簽,並替換h1-h5之前的所有文字

 代碼如下 復制代碼

for( $i=1;$i<=5;$i++ )
{

 $sql ="SELECT * FROM `表名` WHERE `字段` like '<h".$i.">%</h".$i.">%' ";
 
 $query = mysql_query( $sql ) or die(mysql_error());
 
 if( mysql_num_rows( $query ) )
 {
  while ( $rs = mysql_fetch_array( $query ) )
  {
   //print_r($rs);
   
   $t = stripslashes($rs['字段']);
   $str = nl2br(strip_tags(addslashes(removelink($t))));
   $sql ="update 表名 set 字段='$str' where id=".$rs['id'];
   
   
   if( mysql_query($sql))
   {
    echo $rs['id'].'成功<br />';
   }
   else
   {
    echo mysql_error();
   } 
  }
 }
 else
 {
  echo '己更新過沒有記錄了'.$sql.'<br />';
 }

}

 
function removelink($t)
{
 //$str = preg_replace("/<a[^>]*href=[^>]*>|</[^a]*a[^>]*>/i","",$t);
 
 $str = preg_replace("/(?is)(?<=<h1>).*?(?=</h1>)/i","",$t);
 $str = preg_replace("/(?is)(?<=<h2>).*?(?=</h2>)/i","",$str);
 $str = preg_replace("/(?is)(?<=<h3>).*?(?=</h3>)/i","",$str);
 $str = preg_replace("/(?is)(?<=<h4>).*?(?=</h4>)/i","",$str);
 $str = preg_replace("/(?is)(?<=<h5>).*?(?=</h5>)/i","",$str);

 return re_h($str);
}

function re_h($str)
{
 $str = str_replace('<h1>','',$str);
 $str = str_replace('<h2>','',$str);
 $str = str_replace('<h3>','',$str);
 $str = str_replace('<h4>','',$str);
 $str = str_replace('<h5>','',$str);
 $str = str_replace('</h1>','',$str);
 $str = str_replace('</h2>','',$str);
 $str = str_replace('</h3>','',$str);
 $str = str_replace('</h4>','',$str);
 $str = str_replace('</h5>','',$str); 
 return $str;
}

上面用到了下面的正則表達式

 代碼如下 復制代碼

preg_replace("/(?is)(?<=<h1>).*?(?=</h1>)/i","",$t);

這就是核心代碼了


比如需要將文本中的超鏈接內容去除,這個時候就需要用到正則表達式了。比如你可以用$str = preg_replace("/<a[^>]*href=[^>]*>|</[^a]*a[^>]*>/i","",$strhtml); 這段來實現需求,如果想要更多解決方法,可以參看以下的。

1、刪除內容中的超鏈接

 代碼如下 復制代碼

ereg_replace('<a([^>]*)>([^<]*)</a>','<font color="red">\2</font>',$content);

ereg_replace("<a [^>]*>|</a>","",$content); 

 
2、消除包含特定詞的超鏈接

 代碼如下 復制代碼

$find="this string is my find";
$string='<font color="red">替換掉了</font>';//將超鏈接替換成的內容
echo ereg_replace('<a([^>]*)>([^<]*'.$find.'[^>]*)</a>','<font color="red">\2</font>',$content);

本站原創,轉載必須注明來源www.bKjia.c0m 否則後果自負

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