在第i行尝试在指定路径创建mongo数据库备份但它无法正常工作。让我知道什么是错的。谢谢。
$command = "mongodump --db test --dbpath D:/dump/db";
$results = shell_exec($command);
答案 0 :(得分:0)
注意:
shell_exec($command); does not work for windows!
它不返回结果或者它可能返回一些错误。 shell_exec仅适用于基于linux的系统,如ubuntu。
如果你还有一些问题,只需在命令提示符下直接点击mongodump命令。