Home > Article > Backend Development > php 下载docx和xlsx出问题
下载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;了