SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享
程序员文章站
2023-11-09 22:33:16
解决方案如下,其它框架雷同。 源代码(/system/libraries/upload.php 199 line) $this->file_type = preg_r...
解决方案如下,其它框架雷同。
源代码(/system/libraries/upload.php 199 line)
$this->file_type = preg_replace("/^(.+?);.*$/", "\\1", $_files[$field]['type']);
修改成如下:
//edit by tacker
if(function_exists('mime_content_type')){
$this->file_type = preg_replace("/^(.+?);.*$/", "\\1", mime_content_type($this->file_temp));
}else{
$this->file_type = preg_replace("/^(.+?);.*$/", "\\1", $_files[$field]['type']);
}
源代码(/system/libraries/upload.php 199 line)
$this->file_type = preg_replace("/^(.+?);.*$/", "\\1", $_files[$field]['type']);
修改成如下:
复制代码 代码如下:
//edit by tacker
if(function_exists('mime_content_type')){
$this->file_type = preg_replace("/^(.+?);.*$/", "\\1", mime_content_type($this->file_temp));
}else{
$this->file_type = preg_replace("/^(.+?);.*$/", "\\1", $_files[$field]['type']);
}
上一篇: php 目录与文件处理-郑阿奇(续)
下一篇: 9个PHP开发常用功能函数小结
推荐阅读
-
SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享
-
SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享
-
SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享_php技巧
-
SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享
-
SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享_php技巧
-
SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享
-
SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享_PHP教程
-
swfupload SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享