程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP幾個超鏈接替換的正則表達式

PHP幾個超鏈接替換的正則表達式

編輯:PHP綜合

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

 

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

 

2、刪除內容中的超鏈接

 

preg_replace(']*)>([^<]*)','\2',$content); 
preg_replace("]*>|","",$content);

 

3、獲取超鏈接文本內容

 

//方法一  
preg_match_all('/<(a|a)[s]{0,1}[w=":()]*>[nrn]*(check user)[nrn]*/i',$string,$matches);  
//方法二  
preg_match_all('/check user/i',$string,$matches);   
print_r($matches);  
//方法三  
preg_match_all('/]*>[^<]*/i',$string,$matches);  
print_r($matches);  
//方法四  
preg_match_all('/check user/is',$str,$arr);  
print_r($arr);  
//方法五  
preg_match_all('/check user/is',$str,$arr);  
print_r($arr); 

 

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