PHP에서 외부 링크를 제거하는 방법: 링크에 [rel="nofollow"] 속성을 추가하세요. 코드는 [$a['content'] = content_nofollow($a['content'],$domain); ].
【관련 학습 권장 사항: php 그래픽 튜토리얼】
php 외부 링크 제거 방법:
해결 방법: 사이트 내의 콘텐츠를 필터링해야 합니다. 내부 링크가 아닌 경우 rel="nofollow" 속성을 추가하세요.
이 글은 워드프레스의 외부 링크 필터링 기능을 활용한 것으로, 이를 변경하여 사용할 수 있습니다.
구체적인 코드는 다음과 같습니다.
//外部链接增加nofllow $content 内容 $domain 当前网站域名 function content_nofollow($content,$domain){ preg_match_all('/href="(.*?)"/',$content,$matches); if($matches){ foreach($matches[1] as $val){ if( strpos($val,$domain)===false ) $content=str_replace('href="'.$val.'"', 'href="'.$val.'" rel="external nofollow" ',$content); } } preg_match_all('/src="(.*?)"/',$content,$matches); if($matches){ foreach($matches[1] as $val){ if( strpos($val,$domain)===false ) $content=str_replace('src="'.$val.'"', 'src="'.$val.'" rel="external nofollow" ',$content); } } return $content; }
전화 시 호출하기 쉽습니다. 다음은 호출 시연입니다.
$a['content'] = content_nofollow($a['content'],$domain); //将文章内容里的链接增加nofllow属性
관련 학습 권장 사항: php 프로그래밍(동영상)
위 내용은 PHP에서 외부 링크를 제거하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!