|
文件上传不成功是怎么回事啊?
图片上传
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '2048';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload',$config);
print_r($this->upload->data());exit;
$this->upload->data());里除了路径有值其他的都是空的! |
|