1、刪除內容中的超連結
ereg_replace(']*)>([^','\2 font>',$content);
ereg_replace("]*>|","",$content);
2、消除包含特定字的超連結
$find ="this string is my find";
$string='替換掉了';//將超連結替換成的內容
echo ereg_replace(']*)>([^]*)','\2',$content);
3、取得超連結文字內容
//方法一
preg_match_all('/[nrn]*( check user)[nrn]*(a|a)>/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('/
print_r($arr);
//方法五
preg_match_all('/
以上就介紹了php超連結常用的正規表示式,包含了面向的內容,希望對PHP教學有興趣的朋友有幫助。