Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Uploadify.php 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. class Uploadify extends Base
  16. {
  17. public $image_type = '';
  18. private $imageExt = '';
  19. private $image_accept = '';
  20. /**
  21. * 析构函数
  22. */
  23. function __construct()
  24. {
  25. parent::__construct();
  26. $this->imageExt = config('global.image_ext');
  27. $this->image_type = tpCache('basic.image_type');
  28. $this->image_type = !empty($this->image_type) ? str_replace('|', ',', $this->image_type) : $this->imageExt;
  29. $this->image_accept = image_accept_arr($this->image_type);
  30. }
  31. /**
  32. * 通用的上传图片
  33. */
  34. public function upload()
  35. {
  36. $func = input('func');
  37. $path = input('path','allimg');
  38. $num = input('num/d', '1');
  39. $is_water = input('is_water/d', 1);
  40. $default_size = intval(tpCache('basic.file_size') * 1024 * 1024); // 单位为b
  41. $size = input('size/d'); // 单位为kb
  42. $size = empty($size) ? $default_size : $size*1024;
  43. $info = array(
  44. 'num' => $num,
  45. 'title' => '',
  46. 'upload' => url('Ueditor/imageUp',array('savepath'=>$path,'pictitle'=>'banner','dir'=>'images','is_water'=>$is_water)),
  47. 'fileList' => url('Uploadify/fileList',array('path'=>$path)),
  48. 'size' => $size,
  49. 'type' => $this->image_type,
  50. 'input' => input('input'),
  51. 'func' => empty($func) ? 'undefined' : $func,
  52. 'path' => $path,
  53. );
  54. $this->assign('info',$info);
  55. return $this->fetch();
  56. }
  57. /**
  58. * 图库在线管理 - 左侧树形目录结构
  59. */
  60. public function picture_folder()
  61. {
  62. $func = input('func');
  63. $path = input('path','allimg');
  64. $num = input('num/d', '1');
  65. $default_size = intval(tpCache('basic.file_size') * 1024 * 1024); // 单位为b
  66. $size = input('size/d'); // 单位为kb
  67. $size = empty($size) ? $default_size : $size*1024;
  68. $info = array(
  69. 'num' => $num,
  70. 'title' => '',
  71. 'upload' => url('Ueditor/imageUp',array('savepath'=>$path,'pictitle'=>'banner','dir'=>'images')),
  72. 'fileList' => url('Uploadify/fileList',array('path'=>$path)),
  73. 'size' => $size,
  74. 'type' => $this->image_type,
  75. 'input' => input('input'),
  76. 'func' => empty($func) ? 'undefined' : $func,
  77. 'path' => $path,
  78. );
  79. $this->assign('info',$info);
  80. // 侧边栏目录栏目
  81. $dirArr = $this->getDir('uploads');
  82. $dirArr2 = [];
  83. foreach ($dirArr as $key => $val) {
  84. $dirArr2[$val['id']] = $val['dirpath'];
  85. }
  86. foreach ($dirArr as $key => $val) {
  87. $dirfileArr = glob("{$val['dirpath']}/*");
  88. if (empty($dirfileArr)) {
  89. empty($dirfileArr) && @rmdir($val['dirpath']);
  90. $dirArr[$key] = [];
  91. continue;
  92. }
  93. /*图库显示数量*/
  94. $countFile = 0;
  95. $dirfileArr2 = glob("{$val['dirpath']}/*.*"); // 文件数量
  96. $countFile = count($dirfileArr2);
  97. /*end*/
  98. $dirname = preg_replace('/([^\/]+)$/i', '', $val['dirpath']);
  99. $arr_key = array_search(trim($dirname, '/'), $dirArr2);
  100. if (!empty($arr_key)) {
  101. $dirArr[$key]['pId'] = $arr_key;
  102. } else {
  103. $dirArr[$key]['pId'] = 0;
  104. }
  105. $dirArr[$key]['name'] = preg_replace('/^(.*)\/([^\/]+)$/i', '${2}', $val['dirpath']);
  106. !empty($countFile) && $dirArr[$key]['name'] .= "({$countFile})"; // 图库显示数量
  107. }
  108. $zNodes = json_encode($dirArr,true);
  109. $this->assign('zNodes', $zNodes);
  110. return $this->fetch();
  111. }
  112. /**
  113. * 图库在线管理 - 图片列表显示
  114. */
  115. public function get_images_path($images_path = 'uploads')
  116. {
  117. if ('uploads' != $images_path && !preg_match('#^(uploads)/(.*)$#i', $images_path)) {
  118. $this->error('非法访问!');
  119. }
  120. $func = input('func/s');
  121. $num = input('num/d', '1');
  122. $info = array(
  123. 'num' => $num,
  124. 'func' => empty($func) ? 'undefined' : $func,
  125. );
  126. $this->assign('info',$info);
  127. // 常用图片
  128. $common_pic = [];
  129. $arr1 = explode('/', $images_path);
  130. if (1 >= count($arr1)) { // 只有一级目录才显示常用图片
  131. $where = [
  132. 'lang' => $this->admin_lang,
  133. ];
  134. $common_pic = Db::name('common_pic')->where($where)->order('id desc')->limit(6)->field('pic_path')->select();
  135. }
  136. $this->assign('common_pic', $common_pic);
  137. // 图片列表
  138. $images_data = glob($images_path.'/*');
  139. $list = [];
  140. if (!empty($images_data)) {
  141. // 图片类型数组
  142. $image_ext = explode(',', $this->imageExt);
  143. // 处理图片
  144. foreach ($images_data as $key => $file) {
  145. $fileArr = explode('.', $file);
  146. $ext = end($fileArr);
  147. $ext = strtolower($ext);
  148. if (in_array($ext, $image_ext)) {
  149. $list[$key]['path'] = ROOT_DIR.'/'.$file;
  150. $list[$key]['time'] = @filemtime($file);
  151. }
  152. }
  153. }
  154. // 图片选择的时间从大到小排序
  155. $list_time = get_arr_column($list,'time');
  156. array_multisort($list_time,SORT_DESC,$list);
  157. // 返回数据
  158. $this->assign('list', $list);
  159. $this->assign('path_directory', $images_path);
  160. return $this->fetch();
  161. }
  162. /**
  163. * 记录常用图片
  164. */
  165. public function update_pic()
  166. {
  167. if(IS_AJAX_POST){
  168. $param = input('param.');
  169. if (!empty($param['images_array'])) {
  170. $images_array = $param['images_array'];
  171. $commonPic_db = Db::name('common_pic');
  172. $data = [];
  173. foreach ($images_array as $key => $value) {
  174. // 添加数组
  175. $data[$key] = [
  176. 'pic_path' => $value,
  177. 'lang' => $this->admin_lang,
  178. 'add_time' => getTime(),
  179. 'update_time' => getTime(),
  180. ];
  181. }
  182. // 批量删除选中的图片
  183. $commonPic_db->where('pic_path','IN',$images_array)->delete();
  184. // 批量添加图片
  185. !empty($data) && $commonPic_db->insertAll($data);
  186. // 查询最后一条数据
  187. $row = $commonPic_db->order('id desc')->limit('20,1')->field('id')->select();
  188. if (!empty($row)) {
  189. $id = $row[0]['id'];
  190. // 删除ID往后的数据
  191. $where_ = array(
  192. 'id' => array('<',$id),
  193. 'lang' => $this->admin_lang,
  194. );
  195. $commonPic_db->where($where_)->delete();
  196. }
  197. }
  198. }
  199. }
  200. /**
  201. * 在弹出窗里的上传图片
  202. */
  203. public function upload_frame()
  204. {
  205. $func = input('func');
  206. $path = input('path','allimg');
  207. $num = input('num/d', '1');
  208. $default_size = intval(tpCache('basic.file_size') * 1024 * 1024); // 单位为b
  209. $size = input('size/d'); // 单位为kb
  210. $size = empty($size) ? $default_size : $size*1024;
  211. $info = array(
  212. 'num'=> $num,
  213. 'title' => '',
  214. 'upload' =>url('Ueditor/imageUp',array('savepath'=>$path,'pictitle'=>'banner','dir'=>'images')),
  215. 'fileList'=>url('Uploadify/fileList',array('path'=>$path)),
  216. 'size' => $size,
  217. 'type' => $this->image_type,
  218. 'input' => input('input'),
  219. 'func' => empty($func) ? 'undefined' : $func,
  220. 'path' => $path,
  221. );
  222. $this->assign('info',$info);
  223. return $this->fetch();
  224. }
  225. /**
  226. * 后台(产品)专用
  227. */
  228. public function upload_product()
  229. {
  230. $aid = input('aid/d');
  231. $func = input('func');
  232. $path = input('path','allimg');
  233. $num = input('num/d', '1');
  234. $default_size = intval(tpCache('basic.file_size') * 1024 * 1024); // 单位为b
  235. $size = input('size/d'); // 单位为kb
  236. $size = empty($size) ? $default_size : $size*1024;
  237. $field = array(
  238. 'aid' => $aid,
  239. 'num' => $num,
  240. 'title' => '',
  241. 'upload' => url('Ueditor/imageUp',array('savepath'=>$path,'pictitle'=>'banner','dir'=>'images')),
  242. 'fileList'=> url('Uploadify/fileList',array('path'=>$path)),
  243. 'size' => $size,
  244. 'type' => $this->image_type,
  245. 'input' => input('input'),
  246. 'func' => empty($func) ? 'undefined' : $func,
  247. 'path' => $path,
  248. );
  249. $this->assign('field',$field);
  250. return $this->fetch();
  251. }
  252. /**
  253. * 完整的上传模板展示
  254. */
  255. public function upload_full()
  256. {
  257. $func = input('func');
  258. $path = input('path','allimg');
  259. $num = input('num/d', '1');
  260. $default_size = intval(tpCache('basic.file_size') * 1024 * 1024); // 单位为b
  261. $size = input('size/d'); // 单位为kb
  262. $size = empty($size) ? $default_size : $size*1024;
  263. $info = array(
  264. 'num'=> $num,
  265. 'title' => '',
  266. 'upload' =>url('Ueditor/imageUp',array('savepath'=>$path,'pictitle'=>'banner','dir'=>'images')),
  267. 'fileList'=>url('Uploadify/fileList',array('path'=>$path)),
  268. 'size' => $size,
  269. 'type' => $this->image_type,
  270. 'input' => input('input'),
  271. 'func' => empty($func) ? 'undefined' : $func,
  272. 'path' => $path,
  273. );
  274. $this->assign('info',$info);
  275. return $this->fetch();
  276. }
  277. /*
  278. * 删除上传的图片
  279. */
  280. public function delupload()
  281. {
  282. echo 1;
  283. exit;
  284. if (IS_POST) {
  285. $action = input('action','del');
  286. $filename= input('filename/s');
  287. $filename= empty($filename) ? input('url') : $filename;
  288. $filename= str_replace(['(',')',',',' ','../','..','./'],'',$filename);
  289. $filename= trim($filename,'.');
  290. $filename = preg_replace('#^(/[/\w\-]+)?(/public/upload/|/uploads/|/public/static/admin/logo/)#i', '$2', $filename);
  291. if(eyPreventShell($filename) && $action=='del' && !empty($filename) && is_file('.'.$filename) && stristr($filename, 'uploads/')){
  292. if (stristr($filename, '/admin/logo/')) {
  293. $filetype = preg_replace('/^(.*)\.(\w+)$/i', '$2', $filename);
  294. $phpfile = strtolower(strstr($filename,'.php')); //排除PHP文件
  295. $size = getimagesize('.'.$filename);
  296. $fileInfo = explode('/',$size['mime']);
  297. if($fileInfo[0] != 'image' || $phpfile || !in_array($filetype, explode(',', $this->imageExt))){
  298. exit;
  299. }
  300. if(@unlink('.'.$filename)){
  301. echo 1;
  302. }else{
  303. echo 0;
  304. }
  305. exit;
  306. }
  307. }
  308. echo 1;
  309. exit;
  310. }
  311. }
  312. public function fileList(){
  313. /* 判断类型 */
  314. $type = input('type','Images');
  315. switch ($type){
  316. /* 列出图片 */
  317. case 'Images' : $allowFiles = str_replace(',', '|', $this->image_type);break;
  318. case 'Flash' : $allowFiles = 'flash|swf';break;
  319. /* 列出文件 */
  320. default :
  321. {
  322. $file_type = tpCache('basic.file_type');
  323. $media_type = tpCache('basic.media_type');
  324. $allowFiles = $file_type.'|'.$media_type;
  325. }
  326. }
  327. $listSize = 102400000;
  328. $key = empty($_GET['key']) ? '' : $_GET['key'];
  329. /* 获取参数 */
  330. $size = isset($_GET['size']) ? htmlspecialchars($_GET['size']) : $listSize;
  331. $start = isset($_GET['start']) ? htmlspecialchars($_GET['start']) : 0;
  332. $end = $start + $size;
  333. $path = input('path','allimg');
  334. if (1 == preg_match('#\.#', $path)) {
  335. echo json_encode(array(
  336. "state" => "路径不符合规范",
  337. "list" => array(),
  338. "start" => $start,
  339. "total" => 0
  340. ));
  341. exit;
  342. }
  343. if ('adminlogo' == $path) {
  344. $path = 'public/static/admin/logo';
  345. } else if ('loginlogo' == $path) {
  346. $path = 'public/static/admin/login';
  347. } else if ('loginbgimg' == $path) {
  348. $path = 'public/static/admin/loginbg';
  349. } else {
  350. $path = UPLOAD_PATH.$path;
  351. }
  352. /* 获取文件列表 */
  353. $files = $this->getfiles($path, $allowFiles, $key);
  354. if (empty($files)) {
  355. echo json_encode(array(
  356. "state" => "没有相关文件",
  357. "list" => array(),
  358. "start" => $start,
  359. "total" => count($files)
  360. ));
  361. exit;
  362. }
  363. /* 获取指定范围的列表 */
  364. $len = count($files);
  365. for ($i = min($end, $len) - 1, $list = array(); $i < $len && $i >= 0 && $i >= $start; $i--){
  366. $list[] = $files[$i];
  367. }
  368. /* 返回数据 */
  369. $result = json_encode(array(
  370. "state" => "SUCCESS",
  371. "list" => $list,
  372. "start" => $start,
  373. "total" => count($files)
  374. ));
  375. echo $result;
  376. }
  377. /**
  378. * 遍历获取目录下的指定类型的文件
  379. * @param $path
  380. * @param array $files
  381. * @return array
  382. */
  383. private function getfiles($path, $allowFiles, $key, &$files = array()){
  384. if (!is_dir($path)) return null;
  385. if(substr($path, strlen($path) - 1) != '/') $path .= '/';
  386. $handle = opendir($path);
  387. while (false !== ($file = readdir($handle))) {
  388. if ($file != '.' && $file != '..') {
  389. $path2 = $path . $file;
  390. if (is_dir($path2)) {
  391. $this->getfiles($path2, $allowFiles, $key, $files);
  392. } else {
  393. if (preg_match("/\.(".$allowFiles.")$/i", $file) && preg_match("/.*". $key .".*/i", $file)) {
  394. $files[] = array(
  395. 'url'=> ROOT_DIR.'/'.$path2, // 支持子目录
  396. 'name'=> $file,
  397. 'mtime'=> filemtime($path2)
  398. );
  399. }
  400. }
  401. }
  402. }
  403. return $files;
  404. }
  405. /**
  406. * 提取上传图片目录下的所有图片
  407. *
  408. * @param string $directory 目录路径
  409. * @param string $dir_name 显示的目录前缀路径
  410. * @param array $arr_file 是否删除空目录
  411. * @param num $num 数量
  412. */
  413. private function getDir($directory, &$arr_file = array(), &$num = 0) {
  414. $mydir = glob($directory.'/*', GLOB_ONLYDIR);
  415. $param = input('param.');
  416. if (0 <= $num) {
  417. $dirpathArr = explode('/', $directory);
  418. $level = count($dirpathArr);
  419. $open = (1 >= $level) ? true : false;
  420. $fileList = glob($directory.'/*');
  421. $total = count($fileList); // 目录是否存在任意文件,否则删除该目录
  422. if (!empty($total)) {
  423. $isExistPic = $this->isExistPic($directory);
  424. if (!empty($isExistPic)) {
  425. $arr_file[] = [
  426. 'id' => $num,
  427. 'url' => url('Uploadify/get_images_path',['num'=>$param['num'],'func'=>$param['func'],'lang'=>$param['lang'],'images_path'=>$directory]),
  428. 'target' => 'content_body',
  429. 'isParent' => true,
  430. 'open' => $open,
  431. 'dirpath' => $directory,
  432. 'level' => $level,
  433. 'total' => $total,
  434. ];
  435. }
  436. } else {
  437. @rmdir("$directory");
  438. }
  439. }
  440. if (!empty($mydir)) {
  441. foreach ($mydir as $key => $dir) {
  442. if (stristr("$dir/", 'uploads/soft_tmp/') || stristr("$dir/", 'uploads/tmp/')) {
  443. continue;
  444. }
  445. $num++;
  446. $dirname = str_replace('\\', '/', $dir);
  447. $dirArr = explode('/', $dirname);
  448. $dir = end($dirArr);
  449. $mydir2 = glob("$directory/$dir/*", GLOB_ONLYDIR);
  450. if(!empty($mydir2) AND ($dir != ".") AND ($dir != ".."))
  451. {
  452. $this->getDir("$directory/$dir", $arr_file, $num);
  453. }
  454. else if(($dir != ".") AND ($dir != ".."))
  455. {
  456. $dirpathArr = explode('/', "$directory/$dir");
  457. $level = count($dirpathArr);
  458. $fileList = glob("$directory/$dir/*"); // 目录是否存在任意文件,否则删除该目录
  459. $total = count($fileList);
  460. if (!empty($total)) {
  461. // 目录是否存在图片文件,否则删除该目录
  462. $isExistPic = $this->isExistPic("$directory/$dir");
  463. if (!empty($isExistPic)) {
  464. $arr_file[] = [
  465. 'id' => $num,
  466. 'url' => url('Uploadify/get_images_path',['num'=>$param['num'],'func'=>$param['func'],'lang'=>$param['lang'],'images_path'=>"$directory/$dir"]),
  467. 'target' => 'content_body',
  468. 'isParent' => false,
  469. 'open' => false,
  470. 'dirpath' => "$directory/$dir",
  471. 'level' => $level,
  472. 'icon' => 'public/plugins/ztree/css/zTreeStyle/img/dir_close.png',
  473. 'iconOpen' => 'public/plugins/ztree/css/zTreeStyle/img/dir_open.png',
  474. 'iconClose' => 'public/plugins/ztree/css/zTreeStyle/img/dir_close.png',
  475. 'total' => $total,
  476. ];
  477. }
  478. } else {
  479. @rmdir("$directory/$dir");
  480. }
  481. }
  482. }
  483. }
  484. return $arr_file;
  485. }
  486. /**
  487. * 检测指定目录是否存在图片
  488. *
  489. * @param string $directory 目录路径
  490. * @param string $dir_name 显示的目录前缀路径
  491. * @param array $arr_file 是否删除空目录
  492. * @return boolean
  493. */
  494. private function isExistPic($directory, $dir_name='', &$arr_file = [])
  495. {
  496. if (!file_exists($directory) ) {
  497. return false;
  498. }
  499. if (!empty($arr_file)) {
  500. return true;
  501. }
  502. // 图片类型数组
  503. $image_ext = explode(',', $this->imageExt);
  504. $mydir = dir($directory);
  505. while($file = $mydir->read())
  506. {
  507. if((is_dir("$directory/$file")) AND ($file != ".") AND ($file != ".."))
  508. {
  509. if ($dir_name) {
  510. return $this->isExistPic("$directory/$file", "$dir_name/$file", $arr_file);
  511. } else {
  512. return $this->isExistPic("$directory/$file", "$file", $arr_file);
  513. }
  514. }
  515. else if(($file != ".") AND ($file != ".."))
  516. {
  517. $fileArr = explode('.', $file);
  518. $ext = end($fileArr);
  519. $ext = strtolower($ext);
  520. if (in_array($ext, $image_ext)) {
  521. if ($dir_name) {
  522. $arr_file[] = "$dir_name/$file";
  523. } else {
  524. $arr_file[] = "$file";
  525. }
  526. return true;
  527. }
  528. }
  529. }
  530. $mydir->close();
  531. return $arr_file;
  532. }
  533. /**
  534. * 未开启同步本地功能,并删除本地图片
  535. * @return [type] [description]
  536. */
  537. public function del_local()
  538. {
  539. if (IS_AJAX_POST) {
  540. \think\Session::pause(); // 暂停session,防止session阻塞机制
  541. $post = input('post.');
  542. $filename = '';
  543. if (!empty($post['filename'])) {
  544. if (is_array($post['filename'])) {
  545. $filename = $post['filename'][0];
  546. } else {
  547. $filename = $post['filename'];
  548. }
  549. }
  550. $filename = strstr($filename, "/uploads/");
  551. if (!empty($filename)){
  552. $weappList = Db::name('weapp')->where([
  553. 'status' => 1,
  554. ])->cache(true, EYOUCMS_CACHE_TIME, 'weapp')
  555. ->getAllWithIndex('code');
  556. if (!empty($weappList['Qiniuyun']) && 1 == $weappList['Qiniuyun']['status']) {
  557. $weappConfig = json_decode($weappList['Qiniuyun']['config'], true);
  558. if (!empty($weappConfig['version']) && 'v1.0.9' <= $weappConfig['version']) {
  559. $qnyData = json_decode($weappList['Qiniuyun']['data'], true);
  560. if (!empty($qnyData['local_save']) && $qnyData['local_save'] == 1) {
  561. $qiniuyunOssModel = new \weapp\Qiniuyun\model\QiniuyunModel;
  562. $qiniuyunOssModel->del_local($filename);
  563. }
  564. }
  565. } else if (!empty($weappList['AliyunOss']) && 1 == $weappList['AliyunOss']['status']) {
  566. $weappConfig = json_decode($weappList['AliyunOss']['config'], true);
  567. if (!empty($weappConfig['version']) && 'v1.0.2' <= $weappConfig['version']) {
  568. $ossData = json_decode($weappList['AliyunOss']['data'], true);
  569. if (!empty($ossData['local_save']) && $ossData['local_save'] == 1) {
  570. $aliyunOssModel = new \weapp\AliyunOss\model\AliyunOssModel;
  571. $aliyunOssModel->del_local($filename);
  572. }
  573. }
  574. } else if (!empty($weappList['Cos']) && 1 == $weappList['Cos']['status']) {
  575. $cosData = json_decode($weappList['Cos']['data'], true);
  576. if (!empty($cosData['local_save']) && $cosData['local_save'] == 1) {
  577. $cosModel = new \weapp\Cos\model\CosModel;
  578. $cosModel->del_local($filename);
  579. }
  580. }
  581. }
  582. }
  583. }
  584. }