在本地工作,但在我尝试过的两台服务器上显示相同的错误消息。使用 Codeigniter 2.1.3
private function upload_file(){
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'jpg|png|jpeg|gif|pdf';
$config['max_width'] = '0';
$config['max_height'] = '0';
$config['encrypt_name'] = true;
$this->load->library('upload', $config);
var_dump($_FILES);
if ( ! $this->upload->do_upload()){
$error = array('error' => $this->upload->display_errors());
var_dump($error);
die();
return $error;
} else {
$data = array('upload_data' => $this->upload->data());
var_dump($data);
die();
return $data;
}
}
在执行此操作时,var_dump($_FILES);
它会显示正确的信息
array(1) { ["userfile"]=> array(5) { ["name"]=> string(8) "0002.pdf" ["type"]=> string(14) "aplication/pdf" ["tmp_name"]=> string(27) "C:\Windows\Temp\php9454.tmp" ["error"]=> int(0) ["size"]=> int(29295) } }
var_dump($error)
放出array(1) { ["error"]=> string(64) " The filetype you are attempting to upload is not allowed. " }
使用 png 和 jpg 进行了测试,这些作品非常出色。
正确的 mime 类型在配置文件中config/mimes.php
'pdf' => array('application/pdf', 'application/x-download'),
编辑:如果这意味着什么,本地服务器是 MAC,两个遥控器是 Windows。