|
源代碼(/system/libraries/upload.php 199 line)
$this->file_type = preg_replace("/^(.+?);.*$/", "http://1", $_FILES[$field]['type']);
修改成如下:
復制代碼 代碼如下:
//Edit By Tacker
if(function_exists('mime_content_type')){
$this->file_type = preg_replace("/^(.+?);.*$/", "http://1", mime_content_type($this->file_temp));
}else{
$this->file_type = preg_replace("/^(.+?);.*$/", "http://1", $_FILES[$field]['type']);
}
php技術:SWFUpload與CI不能正確上傳識別文件MIME類型解決方法分享,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。