SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享
程序员文章站
2022-05-25 21:17:57
解决方案如下,其它框架雷同。 源代码(/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']);
}
上一篇: pygame游戏之旅 添加碰撞效果的方法
下一篇: Apache 多站点虚拟主机配置方法