php 下载docx和xlsx出问题

WBOY
Release: 2016-06-20 12:41:04
Original
1377 people have browsed it

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


回复讨论(解决方案)

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

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

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

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



不好使

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

去掉空格OK;了

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template