使用文件导出和导入 MySQL 表 - 无需 phpMyAdmin?
如果我可以通过我的网站为我的 MySQL 表请求备份文件(例如 .sql 或 .csv),那就太好了,这样我就可以在出现问题时“重置”表。 此处解释了导出和导入这两个操作,但在就我而言,如果这可以通过某种网络界面来完成,而不需要直接访问 phpMyAdmin,那就更好了。这可能吗?如果是这样,我应该查看哪些 PHP 函数?
It'd be nice if I could request a backup file (such as a .sql or .csv) for my MySQL table through my site, so I would be able to 'reset' the table in case anything goes wrong. These two actions, exporting and importing, are explained here, but in my case it'd be much better if this could be done via a web interface of some kind, without accessing phpMyAdmin directly. Is this possible? If so, what PHP functions should I be taking a look at?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅此 MySQL 文档页面 并查找
INTO OUTFILE
选项允许您将结果直接写入文件,甚至无需从 PHP 读取它们。See this MySQL doc page and look for the
INTO OUTFILE
option that allows you to write your results directly to a file without even reading them from PHP.使用 mysqldump
Mysqldump 文档在这里
Use mysqldump
Mysqldump documentation is here