解決策は次のとおりです。他のフレームワークも同じです。
ソースコード(/system/libraries/upload.php 199行)
$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']);
http://www.bkjia.com/PHPjc/323126.html
www.bkjia.comtruehttp://www.bkjia.com/PHPjc/323126.html技術記事解決策は次のとおりです。他のフレームワークも同じです。 ソースコード(/system/libraries/upload.php 199行) $this-file_type = preg_replace("/^(.+?);.*$/", "\1", $_FILES[$field]['type ']); に変更されました...