测试5.6版本 我用的是gbk
方法:这里我还是把完整的代码放出来,省的大家看不懂,遭到大家的火炮攻击,呵呵我贴代码之前 大家一定要记着一定要按照我说的走,没有按照我说的走的,出问题,别骂我.
首先,在"/include"目录下打开"extend.func.php教程"文件,然后,将以下内容保存在"extend.func.php"文件中尾部,一共三个函数:
-
-
function getpicstruepath($body,$litpic){
-
$delfiles = array();
-
if(!emptyempty($litpic)) {
-
$litpicpath =
-
gettruepath();
-
$litpicpath .=
-
$litpic;
-
$delfiles[] =
-
$litpicpath;
-
}
-
preg_match_all("/src=["|'|s|s]([^
-
|/|>]*){0,}(([^>]*).(gif|jpg|png))/isu",$body,$tmpdata);
-
$picspath =
-
array_unique($tmpdata[2]);
-
foreach($picspath as
-
$tmppath){
-
$path =
-
gettruepath();
-
$picpath =
-
preg_replace("/[a-za-z]+://[^ |/|s]*/",'',$tmppath);//去掉网址部分
-
$path .=$picpath;
-
$delfiles[] =
-
$path;
-
}
-
return $delfiles;
-
}
-
-
-
function getarcbody($aid){
-
global $dsql;
-
$query = "select
-
dede_addonarticle.body from dede_addonarticle where dede_addonarticle.aid =
-
'$aid'";
-
$row =
-
$dsql->getone($query);
-
if(is_array($row))
-
return $row;
-
else
-
return false;
-
}
-
-
-
function writetodelfiles($msg)
-
{
-
if(emptyempty($msg))
-
$savemsg="未获得消息";
-
else $savemsg = $msg;
-
$errorfile =
-
dirname(__file__).'/../data/del_body_file.txt';
-
$fp = @fopen($errorfile,
-
'a');
-
@fwrite($fp,"rn{$savemsg}");
-
@fclose($fp);
-
}
接下来打开"/dede/inc/inc_batchup.php"文件.
1:在33行下方加入,也就是"$arcrow = $dsql->getone($arcquery);"下方:
$arcbodyrow = getarcbody($aid);
2:在大概102下方加入,也就是" if(@is_file($filenameh)) @unlink($filenameh);"下方:
-
-
$willdelfiles = getpicstruepath($arcbodyrow['body'],$arcrow['litpic']);
-
$nowtime = time();
-
$executetime = mydate('y-m-d h:i:s',$nowtime);
-
$msg = "rn文章标题:$arcrow[title]";
-
writetodelfiles($msg);
-
if(!emptyempty($willdelfiles)){
-
foreach($willdelfiles as $file) {
-
if(file_exists($file) && !is_dir($file))
-
{
-
if(unlink($file)) $msg = "rn位置:$filern结果:删除成功!rn时间:$executetime";
-
else $msg = "rn位置:$filern结果:删除失败!rn时间:$executetime";
-
}
-
else $msg = "rn位置:$filern结果:文件不存!rn时间:$executetime";
-
writetodelfiles($msg);
-
}
-
} else {
-
$msg = "rn未在body中解析到数据rnbody原始数据:$arcbodyrow[body]rn时间:$executetime";
-
writetodelfiles($msg);
-
}
全部修改完成,删除文章时,程序会分析body中的图片地址,然后删除.并在/data/目录下,产生日志记录文件:del_body_file.txt 这个文件,当你删除的时候你可以去看看.