我們得到一個錯誤您嘗試上傳的文件類型是不允許的笨版本3.0.4
錯誤:
Error: The filetype you are attempting to upload is not allowed.
array(1) { ["csv"]=> array(5) { ["name"]=> string(18) "cod_sp_payment.csv" ["type"]=> string(24) "application/vnd.ms-excel" ["tmp_name"]=> string(24) "C:\xampp\tmp\php5910.tmp" ["error"]=> int(0) ["size"]=> int(155) } }
控制器代碼:
$config['upload_path'] = './uploads/excel/';
$config['allowed_types'] = 'text/comma-separated-values|application/csv|application/excel|application/vnd.ms-excel|application/vnd.msexcel|text/anytext|text/plain|text/csv|csv';
$this->load->library('upload', $config);
if(! $this->upload->do_upload('csv')) {
$error = array('error' => $this->upload->display_errors());
// $this->load->view('upload_form', $error);
echo $this->upload->display_errors();
}
$upload_data = $this->upload->data();
exit();
@AnuAbraham但很難在代碼中留下評論,你可以通過點擊標籤下方的編輯按鈕來更新你的問題。 – user4419336
@ Arun我們已經按照您的建議更改了我們的代碼。請檢查上面的代碼 –