网站地图    收藏   

主页 > 后端 > ecshop教程 >

ecshop如何解决readdir(): not a valid Directory resource i

来源:自学PHP网    时间:2014-11-28 23:31 作者: 阅读:

[导读] 有客户ecshop网站程序在ecshop后台---模板管理*---模板选择顶部出现以下报错:Warning: readdir(): supplied argument is not a valid Directory resource in \zuimoban\ecshop\admin\te......

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

有客户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():

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论