我正在尝试使用php codigniter上传zip文件

时间:2019-01-24 10:10:55

标签: php codeigniter file-upload

对此我有很多疑问。

  1. 在autoload.php中,在$ autoload [libraries]中应为哪个库指定 上传文件。

  2. 参考时,我看到使用

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

,并且我的文件中没有名为upload的库。
 3.下面是我的控制器

function cpanel_download_or_upload()
{
    if(isset($_POST[TAG_UPLOAD]))
    {
        $config['upload_path'] = './uploads/';
        $config['allowed_types'] = 'zip';

        if ( ! is_dir($config['upload_path']) ) die("THE UPLOAD DIRECTORY DOES NOT EXIST");
        $this->load->library('upload', $config);
        if ( ! $this->upload->do_upload('userfile')) {
           die("ERROR");
        } else {

            return array('upload_data' => $this->upload->data());
        }
    }
    $this->load->view('CPANEL/access_file_from_or_to_cpanel.php');
}

0 个答案:

没有答案