织梦CMS内容管理系统的外链删除方法(PHP删除非站内外部链接)实例代码
分类:PHP_Python| 发布:佚名| 查看:349 | 发表时间:2014/7/28
一般在做网站系统的时候,出于优化等因素的考虑需要再添加文章的时候删除掉不是本站的链接,对于这一要求可以通过让PHP处理下文章内容,来达到文章外部链接的自动删除的效果。
本实例代码主要参考织梦CMS内容管理系统的外链删除方法。
代码如下:
09 | function Replace_Links( & $body , $allow_urls = array () ) |
11 | $host_rule = join( '|' , $allow_urls ); |
12 | $host_rule = preg_replace( "#[\n\r]#" , '' , $host_rule ); |
13 | $host_rule = str_replace ( '.' , "\\." , $host_rule ); |
14 | $host_rule = str_replace ( '/' , "\\/" , $host_rule ); |
16 | preg_match_all( "#<a([^>]*)>(.*)<\/a>#iU" , $body , $arr ); |
17 | if ( is_array ( $arr [0]) ) |
21 | foreach ( $arr [0] as $i => $v ) |
23 | if ( $host_rule != '' && preg_match( '#' . $host_rule . '#i' , $arr [1][ $i ]) ) |
28 | $tgarr [] = $arr [2][ $i ]; |
33 | $body = str_replace ( $rparr , $tgarr , $body ); |
36 | $arr = $rparr = $tgarr = '' ; |