使用 PHP 导出 MySQL 数据库 [已关闭]
我已经构建了一个php / mysql(wamp)应用程序并部署在本地工作站上。我的客户想要保存数据库并在他喜欢的时候恢复它。
我找到了这个代码来保存:
<?php
$DB_HOST = "localhost";
$DB_USER = "root";
$DB_PASS = "admin";
$DB_NAME = "dbname";
$con = new mysqli($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME);
$tables = array();
$result = mysqli_query($con,"SHOW TABLES");
while ($row = mysqli_fetch_row($result)) {
$tables[] = $row[0];
}
$return = '';
foreach ($tables as $table) {
$result = mysqli_query($con, "SELECT * FROM ".$table);
$num_fields = mysqli_num_fields($result);
$return .= 'DROP TABLE '.$table.';';
$row2 = mysqli_fetch_row(mysqli_query($con, 'SHOW CREATE TABLE '.$table));
$return .= "\n\n".$row2[1].";\n\n";
for ($i=0; $i < $num_fields; $i++) {
while ($row = mysqli_fetch_row($result)) {
$return .= 'INSERT INTO '.$table.' VALUES(';
for ($j=0; $j < $num_fields; $j++) {
$row[$j] = addslashes($row[$j]);
if (isset($row[$j])) {
$return .= '"'.$row[$j].'"';} else { $return .= '""';}
if($j<$num_fields-1){ $return .= ','; }
}
$return .= ");\n";
}
}
$return .= "\n\n\n";
}
$handle = fopen('backup.sql', 'w+');
fwrite($handle, $return);
fclose($handle);
echo "success";
?>
此代码将文件保存在默认文件夹中。我需要的是让用户决定保存备份文件的位置或只是通过浏览器下载它。另一方面,用户需要从他想要的文件恢复,所以我需要一个“浏览”按钮让他选择任何文件夹中的文件。
我的数据库utf8_general_ci,有英语,法语和意大利语,我不需要复杂的代码,因为我不知道如何管理它们:-(
提前致谢。