使用XSLT技术将DB中的数据导出到excelsheet
我有 PHP 形式的服务器端脚本。我在数据库中有一些记录,我必须使用 XSLT 技术以编程方式将其导出到 Excel 工作表。您能否提供一些使用 XSLT 和 PHP 的示例?我在 php 手册中搜索但找不到它
I have server side script as PHP . I have some set of records in the DB which i have to programmatically export it to excel sheet using XSLT technology . Can you provide some examples using XSLT and PHP. I searched in php manual but could not find it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尚未明确说明要将数据导出到哪种类型的 Excel。
如果只是没有任何修饰的表格数据,那么最简单的方法是将数据导出为 CSV。您不需要任何 XML 或 XSLT 即可做到这一点。您所需要的只是一个 CSV 生成工具。
另一方面,如果您希望以新的 XML 格式将数据导出到某些经过特殊处理的 Excel 工作表,则可以将数据从数据库导出为 XML,并编写合适的 XSL 转换代码以创建所需的 Excel/XML 输出。
You haven't explicitly stated to what kind of Excel you want to export your data.
If it's just tabular data without any adornments, then the simplest is to export your data to CSV. You don't need any XML or XSLT to do that. All you need is a CSV generating facility.
If, on the other hand, you want to export data to some spiced up Excel sheet in the new XML format, then export your data from the database as XML and code up a suitable XSL transformation to create your desired Excel/XML output.