使用 PHP 导出/导入 mySQL 查询
我正在寻找在 WordPress 插件中实现导出/导入功能。我能想到的唯一场景是在将数据库查询为某种格式后导出数据,然后重新读取它(用于导入)并使用该数据创建查询。
我在想是否有捷径。我想要的基本上是一个函数来获取数据库中数据的 SQL 查询,然后在导入时执行它。这与 PHPmyAdmin 中导出数据库的功能基本相同。
有人有主意吗?
I'm looking to implement an Export/Import feature in a WordPress Plug-in. The only scenario that I can think of, is exporting the data after querying the database to some format and then re-reading it (for import) and creating a query with that data.
I'm thinking if there is a shortcut for that. What I want basically is a function to get the SQL query of the data I have in the database and then execute it when importing. This is basically the same function in PHPmyAdmin that exports the database.
Anyone have an idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 MySQL 的
SELECT
语法,特别是... INTO OUTFILE
部分。将其与 MySQL 的LOAD DATA INFILE
语法结合起来 你可能正在做生意。Check out MySQL's
SELECT
Syntax, specifically the... INTO OUTFILE
portion. Couple that with MySQL'sLOAD DATA INFILE
Syntax and you might be in business.