本文介绍了在codeigniter中上传doc和docx文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
hello我在代码中上传文档和docx文件时遇到麻烦。
我检查mime类型在config / mime.php。
任何人都可以告诉我,有什么问题是吗?
以下是我的mime.php文件。
hello all i am getting trouble to upload a doc and docx file in codeigniter.i checked mime type in config/mime.php.can any one tell me that what's problem is there?following is my mime.php file.
'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'),
推荐答案
在codeigniter 3(其455)中查看此 system / libraries / Upload.php
行号199.
See this system/libraries/Upload.php
line number 199, in codeigniter 3(its 455)
$this->_file_mime_type($_FILES[$field]);
将此行更改为:
$this->_file_mime_type($_FILES[$field]); var_dump($this->file_type); die();
任何在 var_dump()
到您的 mimes.php
。
这篇关于在codeigniter中上传doc和docx文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!