我怎么能用Codeigniter上传pdf文件

时间:2017-04-07 20:08:52

标签: pdf codeigniter-3

我如何使用codeigniter上传pdf文件?有人可以共享代码吗?这对我很有帮助。我搜索但没有得到具体的解决方案。

1 个答案:

答案 0 :(得分:0)

//////////在控制器中

public function do_upload()
    {
            $config['upload_path']          = './uploads/';//file save path
            $config['allowed_types']        = 'pdf';
            $config['max_size']             = 100000;


            $this->load->library('upload', $config);

            if ( ! $this->upload->do_upload('userfile'))
            {
                    $error = array('error' => $this->upload->display_errors());

                    $this->load->view('upload_form', $error);
            }
            else
            {
                    $data = array('upload_data' => $this->upload->data());

                    $this->load->view('upload_success', $data);
            }
    }