首頁 >後端開發 >php教程 >swfupload SWFUpload與CI無法正確上傳識別檔案MIME類型解決方法分享

swfupload SWFUpload與CI無法正確上傳識別檔案MIME類型解決方法分享

WBOY
WBOY原創
2016-07-29 08:44:48842瀏覽

解決方案如下,其它框架雷同。
原始碼(/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教學有興趣的朋友有幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn