如何为 xls 文件提供保存选项

发布于 2024-10-29 10:30:23 字数 272 浏览 0 评论 0原文

我需要生成 xls 格式的 mysql 表报告。我得到

用 fwrite 保存 .xls 文件

这段代码并且它就像魅力一样发挥作用。但问题是我需要一个保存选项,下载并浏览目录来保存文件。有人可以帮帮我吗?我尝试更改标题,但没有取得任何成功。

预先感

谢维奈

I need to generate a report form mysql table in xls format. I got

Saving a .xls file with fwrite

this code and it is working like charm. But the thing is I need to have a save option, download and browse the directory to save the file. Can anybody helpme out? I tried changing the header but i didn't get any success.

Thanks in advance

Vinay

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

別甾虛僞 2024-11-05 10:30:24

假设您使用 PHP:

header('Content-Type: application/vnd.ms-excel;');
header('Content-type: application/x-msexcel');
header('Content-Disposition: attachment; filename="your_xls_on_the_server.xls";');
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . filesize('your_xls_on_the_server.xls'));
ob_clean();
flush();
readfile('your_xls_on_the_server.xls');
exit;

Assuming you're using PHP:

header('Content-Type: application/vnd.ms-excel;');
header('Content-type: application/x-msexcel');
header('Content-Disposition: attachment; filename="your_xls_on_the_server.xls";');
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . filesize('your_xls_on_the_server.xls'));
ob_clean();
flush();
readfile('your_xls_on_the_server.xls');
exit;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文