IE için PHP Excel Çıktı boş bir dosya verir

0 Cevap php

Ben php ile bir excel dosyası oluşturmak çalışıyorum. Bu Firefox'ta çalışıyor ama IE ile sadece boş bir dosya alıyorum. Bu temelde yapıyorum budur:

header('Content-type: application/ms-excel');
header('Content-Disposition:  inline; attachment; filename='.$filename);
echo $data;

Çeşitli Başlık ayarlarını ama hiçbir başarı denedim. Ben de burada, çıkış için aynı sonucu bir metin dosyası olarak içeriği denedim. IE'de Hiçbir içerik.

Herhangi bir fikir?

header("Cache-Control: no-stor,no-cache,must-revalidate");
header("Cache-Control: post-check=0,pre-check=0", false);
header("Cache-control: private");
header("Content-Type: application/octet-stream");
header('Content-Disposition:  inline; attachment; filename='.$filename);
header("Content-Transfer-Encoding: binary");
header("Pragma: no-cache");
header("Expires: 0");

-

header('Pragma: public'); 
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT'); 
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: pre-check=0, post-check=0, max-age=0');
header ("Pragma: no-cache"); 
header("Expires: 0"); 
header('Content-Transfer-Encoding: none'); 
header('Content-Type: application/vnd.ms-excel;');
header("Content-type: application/x-msexcel");
header('Content-Disposition:  inline; attachment; filename='.$filename);

Sadece iki Seçenekler, diğer bazı kombinasyonları denedim.

Thanks, Roland

0 Cevap