测试的是 upload3.php doAction6.php upload.class.php 这几个文件
你看看是不是你判断条件写错了
^-^...
protected function checkExt(){
$this->ext=strtolower(pathinfo($this->fileInfo['name'],PATHINFO_EXTENSION));
if(!in_array($this->ext,$this->allowExt)){
$this->error='非图片文件类型';
return false;
}else if($this->imgFlag){
if(!@getimagesize($this->fileInfo['tmp_name'])){
$this->error='不是真实的图片类型';
return false;
}else{
return true;
}
}else{
return true;
}
}
这样写就对了