|
![](static/image/common/ico_lz.png)
楼主 |
发表于 2016-1-26 17:42:22
|
显示全部楼层
本帖最后由 Closer 于 2016-1-26 18:07 编辑
PHP复制代码 function caseupload (){
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|png|jpg|jpeg';
$this->load->library('upload',$config);
$this->upload->do_upload('pic');
var_dump($this->upload->data());
} 复制代码 |
|