博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
外部链接增加nofllow
阅读量:6722 次
发布时间:2019-06-25

本文共 766 字,大约阅读时间需要 2 分钟。

  hot3.png

/**     * 外键处理     */    //外部链接增加nofllow $content 内容 $domain 当前网站域名    function content_nofollow($content,$domain){         preg_match_all('/href="(.*?)"/',$content,$matches);         show($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;    }

转载于:https://my.oschina.net/bibo/blog/352168

你可能感兴趣的文章
反垃圾邮件神器--开源邮件网关ScrolloutF1之一--安装及更新
查看>>
Centos6.8系统怎么解决“/boot”分区满了
查看>>
关于空指针的解决办法
查看>>
Myeclipse发布第一个jsp页面及web project部署到tomcat上的几种方法
查看>>
bzoj 2705: [SDOI2012]Longge的问题
查看>>
Eclipse中常用的快捷键
查看>>
华为交换机部分进程说明 dis cpu-usage
查看>>
Linux命令(19):ln命令
查看>>
Python里的OS模块常用函数说明
查看>>
sql:拼接字符串、截取字符串、取字符串长度
查看>>
mysql 主从复制
查看>>
php动态扩展bcmath与sockets库模块
查看>>
记录quick cocos2d-x3.2升级至cocos2d-x3.8
查看>>
2012.5.22
查看>>
洛谷——P1265 公路修建
查看>>
Redhat 与Windows下的远程桌面
查看>>
10天学通Android开发(8)-多媒体
查看>>
Zabbix监控屏幕全屏显示多个监控项
查看>>
windows 实验报告
查看>>
$POST 、$HTTP_RAW_POST_DATA、php://input三者之间的区别
查看>>