2
我想爲我的KMZ文件創建一個下載。這適用於Firefox和Chrome,但不適用於IE(9,10或11)。這裏是我的代碼:KMZ下載失敗的IE瀏覽器,使用PHP頭
function kmz_export($result){
header_remove();
// .... create file
$zip = new ZipFile();
$zip->addFile($kml, $title . '.kml');
header('Content-Type: "application/vnd.google-earth.kmz+xml"');
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=". $title .".kmz");
header("Content-Transfer-Encoding: binary");
echo $zip->file();
exit();
}
在另一方面,如果我更改了內容類型應用程序了/ PDF和標題.PDF,它下載罰款(但不能被打開,它不是一個真正的PDF文件) 。任何幫助將是greate!
感謝 傑森