checkRootPath 方法
直接使用 is_dir 和 is_writable 检查 $this->rootPath 时,如果实例化 upload类时,rootPath属性设置为空 上传时提示错误:“上传根目录不存在!请尝试手动创建”。
修改方法:
if(!(is_dir($this->rootPath) && is_writable($this->rootPath))){
修改为:
if($this->rootPath != '' && !(is_dir($this->rootPath) && is_writable($this->rootPath))){
就是在if里面 最前面加上 rootPath不为空时,就能成功上传文件了
最佳答案