>  기사  >  백엔드 개발  >  PHP用header开展文件下载

PHP用header开展文件下载

WBOY
WBOY원래의
2016-06-13 11:29:51760검색

PHP用header进行文件下载
各位,我用header导出csv,我在本地测试可以成功下载导出,但是在服务器就只能直接显示在网页上了,不能下载,为什么会这样?
我的header是这样的:

header("Content-Description: File Transfer"); <br />header("Content-Type: application/octet-stream");<br />header("Content-Type: application/vnd.ms-excel");<br />header("Content-Type: application/force-download"); <br />header("Pragma: public"); <br />header("Accept-Ranges: bytes"); <br />header("Expires: 0");<br />header('Content-Disposition: attachment;filename="data.csv"');<br />header("Content-Transfer-Encoding: binary");<br />header("Cache-Control: must-revalidate, post-check=0, pre-check=0");<br />header('Cache-Control: private',false);

PHP csv 下载
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.