从服务器下载后,使用phpexcel生成的Excel文件无法打开

时间:2014-06-01 10:14:25

标签: php phpexcel

我使用PHP Excel生成并下载了一个Excel文件,并且它在localhost中正常工作。

但是当我将其上传到服务器时,它正在下载,但是在打开文件时会显示错误消息:

Excel cannot open the file [filename] because the file format or file extension is not valid. 

我不知道标题是否有问题。 我正在使用的标题如下:

header('Content-Type: application/vnd.openxmlformats-officecdocument.spreadsheetml.sheet');
header('Content-Disposition:attachment;filename="01simple.xlsx"');
header('Cache-Control:max-age=0');

我发现了类似的问题,但没有一个得到准确回答。

0 个答案:

没有答案