您好,登錄后才能下訂單哦!
這篇文章給大家介紹使用PHP怎么對站點內容中的外部鏈接進行過濾,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
解決方法:需要對站點內的內容進行過濾,將不是內部鏈接的鏈接加上 rel="nofollow"屬性。
本文借鑒了wordpress的過濾外部鏈接的函數,將其改一下即可使用。
具體代碼如下:
//外部鏈接增加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怎么對站點內容中的外部鏈接進行過濾就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。