您知道用于导出/导入 MySQL 数据库转储的 PHP 脚本或库吗?
我没有 shell 访问权限,因此无法使用 mysqldump 命令 此外,像 SELECT * INTO OUTFILE 这样的句子的使用也受到限制已
解决:我在谷歌代码中找到了几个 PHP 脚本/库/类。
I don't have shell access so can't use the mysqldump command
Also the use of sentences like SELECT * INTO OUTFILE are restricted
SOLVED: I've found several PHP scripts/libraries/classes in google code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
比
SELECT * FROM
和之后的file_put_contents()
否则解释为什么不执行以下操作之一!
您希望输出是什么样的?如果它看起来像一个常规转储文件,那么祝您编写自己的 PHP 到 mysql 转储文件转换器好运。
Than a
SELECT * FROM
and afterwards afile_put_contents()
Otherwise explain why not doing one of the following!
What do you want the output to look like? If it should look like a regular dump file, that good luck in writing your own PHP to mysql dump file converter.