创建多选项卡 Excel 文件
我的 PHP 脚本必须创建一个多选项卡 Excel 文件,每个选项卡中都有一个报告,但这些报告已经作为 HTML 页面存在,因此我不想重复代码和工作。 我知道我可以将 HTML 文件重命名为 .xls,Excel/OpenOffice Calc 会将其作为电子表格打开,但我不知道如何拥有多个选项卡。
我什至不知道这是否可能。
我已经知道 Biffwriter 和其他 PHP 库来创建 Excel 文件,但我正在寻找更智能的解决方案。
谢谢, 塞德里克
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Pear Excel Spreadsheet Writer 具有创建 新工作表 如果这就是您正在寻找的。
Pear Excel Spreadsheet Writer has a function to create new Worksheets if thats what you are looking for.
如果您不介意提供 Excel 2007 文件,您可以执行以下操作:
现在您可以使用文件结构在那里用您需要的报告填充与每个选项卡对应的文件。 您可能希望将它们用作模板,保留相同的代码并呈现不同的文件,具体取决于您是否生成 Excel 报告的 html 报告。
最后,压缩整个目录结构并使用 xlsx 扩展名提供服务。
If you don't mind serving excel 2007 files, you can do this:
Now you can use the file structure there to populate the file corresponding to each tab with the report you need. You may want to use them as templates, keep the same code and render different files depending on whether you generate the html report of the excel report.
In the end, zip up the entire directory structure and serve it with an xlsx extension.
请检查以下网址
一个库
和
图罗里亚斯
来自 IBM 和
来自 999Tutorials
Please check the URLS of
a library
and
turorials
from IBM and
from 999Tutorials