1. 콘텐츠의 하이퍼링크 삭제
ereg_replace(']*)>([^<]*)','< ; 글꼴 색상="red">\2',$content);
ereg_replace("]*>|"," " ,$content);
2. 특정 단어가 포함된 하이퍼링크 제거
$find="this string is my find";
$string='교체됨';//하이퍼링크 내용 대체
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)
print_r($matches)
//방법 4
preg_match_all('/
print_r($arr);
//방법 5
preg_match_all('/
위 내용은 PHP 하이퍼링크에서 일반적으로 사용되는 정규식을 소개하며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.