当前位置: 首页 > 站长资讯 > 正文页面

dedecms批量替换文章中超链接的方法

本文实例讲述了dedecms批量替换文章中超链接的方法。分享给大家供大家参考。具体分析如下:gTH网站目录_网站网址收录与提交入口

我自己的一个网站由以前采集里面有很多连接没有过滤掉,现在想再过滤这些连接了,找了很多找到了一个解决办法,下面分享给各位朋友有需要的参考.gTH网站目录_网站网址收录与提交入口

把下面代码replace.php保存在你网站根目录,具体代码如下:gTH网站目录_网站网址收录与提交入口

require("data/common.inc.php");gTH网站目录_网站网址收录与提交入口

$conn=mysql_connect($cfg_dbhost,$cfg_dbuser,$cfg_dbpwd) or die("数据库服务器链接失败");gTH网站目录_网站网址收录与提交入口

mysql_select_db($cfg_dbname) or die ("数据库打开失败");gTH网站目录_网站网址收录与提交入口

mysql_query("SET NAMES 'gbk'");gTH网站目录_网站网址收录与提交入口

$sql="select * from {$cfg_dbprefix}addonarticle order by aid desc";gTH网站目录_网站网址收录与提交入口

$result=mysql_query($sql);gTH网站目录_网站网址收录与提交入口

while($rows=mysql_fetch_array($result))gTH网站目录_网站网址收录与提交入口

{gTH网站目录_网站网址收录与提交入口

$body=$rows["body"];gTH网站目录_网站网址收录与提交入口

$newbody=preg_replace("/(?<=href=)([^>]*)(?=>)/i","http://down.admin5.com", $body);gTH网站目录_网站网址收录与提交入口

$sqlu="update {$cfg_dbprefix}addonarticle set body='".$newbody."' where aid=".$rows["aid"];gTH网站目录_网站网址收录与提交入口

$resultu=mysql_query($sqlu);gTH网站目录_网站网址收录与提交入口

if(!$resultu)gTH网站目录_网站网址收录与提交入口

{gTH网站目录_网站网址收录与提交入口

$eoo[]=$rows["aid"];gTH网站目录_网站网址收录与提交入口

}gTH网站目录_网站网址收录与提交入口

}gTH网站目录_网站网址收录与提交入口

if(isset($eoo))gTH网站目录_网站网址收录与提交入口

{gTH网站目录_网站网址收录与提交入口

echo "有错误,有错误的ID如下:";gTH网站目录_网站网址收录与提交入口

print_r($eoo);gTH网站目录_网站网址收录与提交入口

}gTH网站目录_网站网址收录与提交入口

elsegTH网站目录_网站网址收录与提交入口

{gTH网站目录_网站网址收录与提交入口

echo "执行成功";gTH网站目录_网站网址收录与提交入口

}gTH网站目录_网站网址收录与提交入口

?>gTH网站目录_网站网址收录与提交入口

还有一种办法在dedecms后台中的sql命令方式下载替换,语句 DEDECMS SQL命令批量替换.gTH网站目录_网站网址收录与提交入口

更改文章中的内容,代码如下:gTH网站目录_网站网址收录与提交入口

update dede_addonarticle set body=replace(body,'原来的字符','替换后的字符')gTH网站目录_网站网址收录与提交入口

批量替换文章模型中内容部分超链接,代码如下:gTH网站目录_网站网址收录与提交入口

update dede_addonarticle set body=replace(body,'href="http://www.xxxx.net','href="http://down.admin5.com');gTH网站目录_网站网址收录与提交入口

例子解释:把文章模型中的超链接由原来的http://www.xxxx.net替换成http://down.admin5.comgTH网站目录_网站网址收录与提交入口

希望本文所述对大家的dedecms建站有所帮助。gTH网站目录_网站网址收录与提交入口

 gTH网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章