当前位置:首页 > CMS教程 > ecshop > 列表

ecshop如何解决readdir(): not a valid Directory resource in报错

发布:smiling 来源: PHP粉丝网  添加日期:2014-11-17 13:46:31 浏览: 评论:0 

有客户ecshop网站程序在ecshop后台---模板管理*---模板选择顶部出现以下报错:

Warning: readdir(): supplied argument is not a valid Directory resource in \zuimoban\ecshop\admin\template.php on line 66

是第一次看到,看看代码,才知道原因,我们找admin\template.php找到66行看代码:

  1. $tmp_bak_dir = @opendir(ROOT_PATH . 'temp/backup/library/'); 
  2.  
  3.  while ($file = readdir($tmp_bak_dir)) 
  4.  
  5.  { 
  6.  
  7.      if ($file != '.' && $file != '..' && $file != '.svn' && $file != 'index.htm' && is_file(ROOT_PATH .'temp/backup/library/' . $file) == true) 
  8.  
  9.      { 
  10.  
  11.          $code = substr($file, 0, strpos($file'-')); 
  12.  
  13.          if (!in_array($code$available_code)) 
  14.  
  15.          { 
  16.  
  17.              @unlink(ROOT_PATH . 'temp/backup/library/' . $file); 
  18.  
  19.          } //开源软件:phpfensi.com 
  20.  
  21.      } 
  22.  
  23.  }

该段代码意思 读取temp/backup/library/ 文件夹以及文件,若该文件夹不存在,就会readdir():

Tags: readdir(): Directory resource

分享到: