1. コンテンツ内のハイパーリンクを削除します
ereg_replace(']*)>([^<]*)','\2',$content);
ereg_replace("]*>|","",$content);
2、特定の単語を含むハイパーリンクを削除します
$find="this string is my find";
$string='replaced';//ハイパーリンクを置換します コンテンツを置換します
echo ereg_replace (']*)>([^<]*'.$find.'[^>]*)',' \2',$content);
3. ハイパーリンクのテキストコンテンツを取得します
//方法 1
preg_match_all('/<(a|a) [s]{0,1 }[w=":()]*>[nrn]*(ユーザーを確認)[nrn]*(a|a)>/i',$string,$matches );
//方法 2
preg_match_all('/ユーザーをチェック/i',$string,$matches);
print_r($matches)/ /メソッド 3
preg_match_all( '/]*>[^<]*/i',$string,$matches);
//方法 4
preg_match_all('/
print_r($arr);
//方法 5 preg_match_all('/print_r($arr);