我在 Windows XP 上使用 XAMPP 1.7.7 并上传 .zip 文件。
$_FILES shows:
array(1) {
["P24_File"]=>
array(5) {
["name"]=>
string(12) "File.zip"
["type"]=>
string(15) "unknown/unknown"
["tmp_name"]=>
string(22) "...\php1B.tmp"
["error"]=>
int(0)
["size"]=>
int(12927)
}
}
令人惊讶的是 finfo_file() 显示“application/zip; charset=binary”...
$_FILES 有什么问题?