【发布时间】:2019-02-08 03:13:38
【问题描述】:
上传文件时遇到问题,这是整个控制器代码: Controller screenshot 这是文件上传代码:
$config['upload_path'] = './_uploads';
$config['allowed_types'] = 'gif|jpg|png|jpeg';
$this->load->library('Upload');
$this->upload->initialize($config);
if (!$this->upload->do_upload('image')) {
echo "failed";
} else {
echo "sucess";
}
当我运行它时,它给了我错误:
An Error Was Encountered
Resource 'upload' already exists and is not a CI_Upload instance
【问题讨论】:
-
在您的问题中添加完整的代码。