使用php将xml转换为mysql?
有没有办法使用php将xml文件转换为mysql表作为sql语句?
我对您知道的任何 PEAR 软件包都持开放态度。
Is there a way to convert an xml file to a mysql table as a sql statement using php?
I'm open to any PEAR packages you know of.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,将 XML 解析到 MySQL 是一项直接任务,需要根据 XML 结构进行大量定制。我建议您使用 SimpleXML 来解析 XML 并使用 PHP 的 MySQLi 类插入到 MySQL 中。
Actually, parsing XML to MySQL is a direct task and need a lot customization based on your XML structure. I suggest you to use SimpleXML to parse XML and insert into MySQL using PHP's MySQLi classes.
有几个包可用于在 PHP 中读取 XML 数据(解析 XML)。您可以编写简单的代码,通过自定义字段在 mysql 中插入相同的代码。
我使用了 phpclasses.org 中的 ParseXml.class.php
代码应该如下使用。
there are several packages available to read XML data in PHP (parsing XML). You can write simple code to insert the same in mysql with your custom fields.
I used ParseXml.class.php from phpclasses.org
The code should use like below.