我正在编写一个用于备份数据库的 php 脚本,想法是使用 mysqldump 命令,然后下载一个带有结果的 sql 文件,不幸的是,mysqldump 的输出没有保存在文件中,只是源代码。这是代码:
$archivo = 'bkbiblioteca_' . date("d-m-Y_H:i:s") . '.sql';
$comando = "mysqldump --add-drop-table --host=$servidor --user=$usuario --password=$clave $base > $archivo";
try{
$archivo_manejador = fopen($archivo, 'w+');
fwrite($archivo_manejador, $comando);
fclose($archivo_manejador);
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . basename($archivo));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($archivo));
ob_clean();
flush();
readfile($archivo);
unlink($archivo);
}catch(\Exception $e){
echo 'error en el proceso de bk' . $e->getMessage(); //TODO: favor incluir en la bitacora global del sistema
}//fin de catch
现在我用这一行获取文件:mysqldump --add-drop-table --host=$servidor --user=$usuario --password=$clave $base > $archivo
我试过这个命令:
system("$comando");
但是它不起作用,所以我无法弄清楚如何执行mysqldump命令并在文件中获取结果而不是获取源代码行。
提前致谢
qq_遁去的一_1
紫衣仙女
HUX布斯