>  기사  >  백엔드 개발  >  php 下载docx和xlsx出问题

php 下载docx和xlsx出问题

WBOY
WBOY원래의
2016-06-20 12:41:041351검색

下载docx和xlsx的类型header('Content-Type:application/octet-stream');应该是什么,下载会出错


回复讨论(解决方案)

看起来好像没错。关键是报什么错?

不是报错,下载下来的文件损坏了,但其实文件是没问题的,直接用浏览器下载就可以

<?phpheader("Content-Type: application/force-download");//强制下载header("Content-Disposition: attachment; filename=AAAA.php"); //给下载的内容指定一个名字readfile("AAAA.php");?>

<?phpheader("Content-Type: application/force-download");//强制下载header("Content-Disposition: attachment; filename=AAAA.php"); //给下载的内容指定一个名字readfile("AAAA.php");?>



不好使

大概是文件名字中间有空格的问题,这可如何是好

去掉空格OK;了

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