0
我要上傳的ODS文件,但它顯示了一個錯誤: 您嘗試上傳的文件類型是不允許您嘗試上傳的文件類型是不允許在笨ODS文件
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'ods|csv|xls';
// $config['max_size'] = '';
$config['max_width'] = '';
$config['max_height'] = '';
$this->load->library('upload', $config);
if (!$this->upload->do_upload())
{
$error = array('error' => $this->upload->display_errors());
$this->load->view('uploadstatement',$error);
}
else
{
$data = array('upload_data' => $this->upload->data());
$data1=$this->upload->data();
$csv_file1=$data1['file_name'];