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生成一个 Excel 文件(xls) ,但将其保存在服务器上,而不是在我的桌面上提示下载!
如何指示 PHPExcel 保存我的文件,而不是让浏览器显示对话框?
好的我明白了:
我必须使用:
$objWriter->save('nameoffile.xls');
...而不是定义标题,因为标题“告诉”浏览器保存文件。
还是非常感谢!