我使用 CodeIgniter,我想上传一张图片。因此,我尝试使用“allowed_types”来限制允许的文件扩展名。
但是,当我上传某些内容时,我仍然接受任何文件扩展名。
这是一个简单的表格。
$configImagem['upload_path'] = './files/noticias/imagens';
$configImagem['allowed_types'] = 'gif|jpg|jpeg|png';
$configImagem['file_name'] = 'noticia_'.date('y-m-d_h-i-s');
$this->upload->initialize($configImagem);
当我上传扩展名不在 allowed_types 中的文件时,我预计会出现错误。
智慧大石