大家好,我在 codeigniter 中上传 doc 和 docx 文件时遇到了麻烦。我在 config/mime.php 中检查了 mime 类型。谁能告诉我有什么问题吗?以下是我的 mime.php 文件。
'doc' => 'application/msword',
'docx' => array('application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/zip'),
'xlsx' => array('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip'),
'word' => array('application/msword', 'application/octet-stream'),
Run Code Online (Sandbox Code Playgroud)
system/libraries/Upload.php在 codeigniter 3(its 455) 中查看此行号 199
$this->_file_mime_type($_FILES[$field]);
Run Code Online (Sandbox Code Playgroud)
将该行更改为:
$this->_file_mime_type($_FILES[$field]); var_dump($this->file_type); die();
Run Code Online (Sandbox Code Playgroud)
无论var_dump()加入什么,都可以将其添加到您的mimes.php.