程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> dedeCMS刪除文章同時刪除附件解決方法

dedeCMS刪除文章同時刪除附件解決方法

編輯:PHP綜合
dedeCMS在刪除文章時,其附件還是保留的,最好的是刪除文章同時也刪除相應的附件,這樣節省空間,刪除不必要的垃圾附件,如何解決刪除文章同時刪除附件呢?   首先添加兩個函數    /* 根據文檔id獲取文檔的body部分 */ function getArcBody($arcid) { global $dsql; if(empty($arcid)) return ; $body = ''; $query = "select arc.*,ch.addtable,ch.fieldset from `dede_arctiny` as arc left join `dede_channeltype` as ch on arc.channel=ch.id where arc.id=$arcid"; $row = $dsql->GetOne($query); if(empty($row)) return ; $addtable = $row['addtable']; $fieldset = $row['fieldset']; include_once(DEDEINC.'./dedetag.class.php'); $dtp = new DedeTagParse(); $dtp->SetNameSpace('field','<','>'); $dtp->LoadSource($fieldset); if(is_array($dtp->CTags)) { foreach($dtp->CTags as $tid=>$tag) { if($tag->GetAtt('type')=='htmltext') { $body = $tag->GetName(); break; } } } if(!empty($body)) { $query = "select $body from `$addtable` where aid=$arcid"; $row = $dsql->GetOne($query); $body = $row[$body]; return $body; } return ; } /* 解析文檔內容的本地圖片圖片 */ function get_img_from_body($body) { $result = array(); if(empty($body)) return $result; preg_match_all('/\ssrc=([\"|\'])([^\1]*?)\.(gif|jpg|jpeg|png)\1/',$body,$res); if(!empty($res[2])) { foreach($res[2] as $k=>$v) { $result[] = $v.'.'.$res[3][$k]; } } return $result; }   把這段代碼貼到include/common.func.php後面, 接著打開後台(假設使用默認的dede作為後台)dede/inc/inc_batchup.php文件, 在第22行添加代碼如下:   $body = getArcBody($aid);     接在在第139行,就是在   return true;     上面一行加上下面的代碼     if($body) { $img_arr = get_img_from_body($body); if(!empty($img_arr)) { foreach($img_arr as $v) { $img_file = GetTruePath().str_replace($GLOBALS['cfg_basehost'],'',$v); if(file_exists($img_file) && !is_dir($img_file)) @unlink($img_file); } } }   這樣就可以實現刪除文檔的時候刪除字段為“htmltext”類型的中的本地圖片了。 *
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved