Heim  >  Artikel  >  Backend-Entwicklung  >  php 下载docx和xlsx出问题

php 下载docx和xlsx出问题

WBOY
WBOYOriginal
2016-06-20 12:41:041350Durchsuche

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

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn