Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我想在我的智能手机上下载一个由 PHPExcel 生成的 xls 文件时,我遇到了一个大问题,我下载了一个名为我的页面的 php 文件,而在我的电脑上它可以正确加载。
header('Content-type: application/vnd.ms-excel'); header('Content-Disposition:inline;filename=fichie.xls'); $writer->save('php://output'); exit();
设置内容处置的线路有两个问题。
它应该在单词之间有空格,这是标题的标准要求。
attachment如果您希望下载文件,而不是内联显示,则应该是。
attachment
例如
header('Content-Disposition: attachment; filename=fichie.xls');