在codeingiter中上传文件

时间:2018-07-02 08:45:00

标签: php codeigniter

尝试将上传的文件移至最终目的地时遇到问题

无法使用其上载类在codeigniter中上载文件,还存在上载目录, 下面是一个代码

$config = array(
                'upload_path' => './upload_dir/users_docs/',
                'allowed_types' => 'gif|png|jpeg',
                'max_size' => 0,
                'max_width' => 0,
                'max_height' => 0,
                'file_name' => $this->currTime,
        );
        $this->load->library('upload', $config);
        if (!empty($_FILES['company_logo']['name']) && !$this->upload->do_upload('company_logo')) {
            $error = array('error' => $this->upload->display_errors());
            $this->session->set_flashdata('error_message', $error['error']);
            redirect('home');
        }
        $data = array('upload_data' => $this->upload->data());

1 个答案:

答案 0 :(得分:1)

'file_name'=> $ this-> currTime中存在问题,时间格式不正确,撇号中的文件名var 中,我只是将其更改为其他名称,现在可以了,谢谢