欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php过滤html中网站链接 php实现域名白名单功能

程序员文章站 2022-06-03 12:44:05
...
  1. /**

  2. * 过滤外站链接
  3. * @param array $local_domain 本站域名 数组
  4. * @param string $message文本内容
  5. */
  6. function replace_outer_links($local_domain_arr, $message) {
  7. $pattern= '/]*href=[\'\"]http[s]?:\/\/(?!' ;

  8. $i = 0 ;
  9. foreach ($local_domain_arr as $local_domain){
  10. if($i==0){
  11. $pattern .= 'www.' .$local_domain.'|'.$local_domain.'|[\w\_]+\.'.$local_domain ;
  12. }else{
  13. $pattern .= '|www.' .$local_domain.'|'.$local_domain.'|[\w\_]+\.'.$local_domain ;
  14. }
  15. $i++ ;
  16. } // bbs.it-home.org
  17. $pattern .=')[^\'^\"]*[\'\"][^>]*>(.+?)/is';
  18. return preg_replace($pattern,'$1',$message);
  19. }
复制代码