English 中文(简体)
PHPExcel set specific headers for file format
原标题:

While googling I found two different sets of headers that need to be set when outputting excel generated in different file format.

for e.g.

For Type "Excel5" headers are:

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");;
header("Content-Disposition: attachment;filename=$filename");
header("Content-Transfer-Encoding: binary ");

For Type "Excel2007" headers are:

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

My question: is there need to set up different headers for each file type as there are other file types also CSV, HTML and PDF?

最佳回答
header("Pragma: public");

No - this is just wrong - though lots of people think it has something to do with caching

header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");

Nothing to do with Excel - these just control caching

header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");;

No - there should only be one content-type header. For a MS Excel file using OLE, the mimetype should be application/vnd.ms-excel

Only the second header above is a valid mime type.

header("Content-Disposition: attachment;filename=$filename");
header("Content-Transfer-Encoding: binary ");

The second header is redundant, the former specifies a filename for the download.

Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet );

Only for a .xlsx file (i.e. saved in XML). Otherwise you should use application/vnd.ms-excel. Indeed the latter should be backwardly compatible.

My question: is there need to set up different headers for each file type

Yes - the Content-Type header is the file type. But only this header needs to change.

C.

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签