解決方案如下,其它框架雷同。
原始碼(/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']);
}
以上就介紹了swfupload SWFUpload與CI無法正確上傳識別檔案MIME類型解決方法分享,包括了swfupload方面的內容,希望對PHP教學有興趣的朋友有幫助。