Home  >  Article  >  Backend Development  >  php 下载docx和xlsx出问题

php 下载docx和xlsx出问题

WBOY
WBOYOriginal
2016-06-20 12:41:041351browse

下载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;了

Statement:
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