|
报错
A PHP Error was encountered
Severity: Notice
Message: Undefined property: Admin:upload
Filename: admin/admin.php
Line Number: 60
Fatal error: Call to a member function do_upload() on a non-object in D:\phpStudy\PHPTutorial\WWW\ci\application\controllers\admin\admin.php on line 60
代码
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|jpeg|png';
$config['max_size'] = 10000;
$config['file_name'] = time() . mt_rand(1000,9999);
//载入上传的类
$this->load->library('upload', $config);
//$this->upload->initialize($config);
//接收图片
$status = $this->upload->do_upload('imgs');
//if(!$status){
// echo 'x';exit;
//}
//$wrong = $this->upload->display_errors();
//if(!$wrong){
// echo 'x';exit;
//}
|
|