$str = preg_replace("/]*href=[^>]*>|[^a]*a[^>]*>/i を使用できます" ,"",$strhtml); この段落は要件を実装するために使用されます。さらに解決策が必要な場合は、以下を参照してください。
1. コンテンツ内のハイパーリンクを削除します
2. 特定の単語を含むハイパーリンクを削除します
3. ハイパーリンクのテキストコンテンツを取得します
//方法 2
preg_match_all('/ユーザーをチェック/i',$string,$matches);
print_r($matches);
//方法 3
preg_match_all('/]*>[^<]*/i',$string,$matches);
print_r($matches);
//メソッド 4
preg_match_all('/
print_r($arr);
//メソッド 5
preg_match_all('/
print_r($arr);