엑셀파일 기준.
안까먹기 위해서.
$sFilePath = '/tmp/myfile.xls';
$sFileName = 'myfile.xls';
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=".$sFileName);
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".strval(filesize($sFilePath)));
header("Cache-Control: cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
echo file_get_contents($sFilePath);
flush();
$sFileName = 'myfile.xls';
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=".$sFileName);
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".strval(filesize($sFilePath)));
header("Cache-Control: cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
echo file_get_contents($sFilePath);
flush();
'PHP' 카테고리의 다른 글
[PHP] localhost의 real IP 가져오기 (0) | 2010.03.25 |
---|---|
[PHP] 정규식을 이용하여 내부중첩 괄호 추출 (0) | 2010.03.24 |
[PHP] 암호걸린 zip 파일 생성 (0) | 2010.03.16 |
[PHP] 특정노드의 XPath 경로 가져오기 (4) | 2009.12.09 |
[PHP DOMDocument - innerHTML 구하는 함수 (0) | 2009.12.09 |