Home >Backend Development >PHP Tutorial >phpexcel 导出的excel件保存下载有关问题

phpexcel 导出的excel件保存下载有关问题

WBOY
WBOYOriginal
2016-06-13 10:21:191765browse

phpexcel 导出的excel件保存下载问题
phpexcel 导出的excel文件自动保存项目文件夹,怎样能让导出的文件通过网页下载到指定位置

------解决方案--------------------
没办法这样做。服务器无法主动让浏览器端下载,也不能指定保存位置。
只能靠用户主动去访问这个excel文件,并手动指定保存位置
------解决方案--------------------
$objWriter->save('php://output'); //到浏览器

$objWriter->save($filename);//这个会直接保存到文件夹而不会提示下载的。

所以你要选择第一种方式..
------解决方案--------------------
http://www.henshiyong.com/archives/312.html

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