使用PHP导出MySQL数据库
背景
导出数据库对于数据备份至关重要,恢复和迁移目的。本文提供了使用 PHP 导出 MySQL 数据库的全面解决方案。
导出数据库
所提供的 PHP 代码将数据库无缝导出到名为“backup.sql.txt”的文件。 ”然而,它缺乏用户对保存位置和可下载性的控制。本文通过增强代码来解决这些限制。
增强型 PHP 代码
以下是增强型 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"; } // User-defined download/save location variable $download_path = isset($_GET['download_path']) ? $_GET['download_path'] : 'default_path'; // Set default path if not provided $handle = fopen($download_path . '/backup.sql', 'w+'); fwrite($handle, $return); fclose($handle); if (isset($_GET['download']) && $_GET['download'] == true) { header('Content-Type: application/octet-stream'); header("Content-Transfer-Encoding: Binary"); header("Content-disposition: attachment; filename=\"backup.sql\""); echo $return; exit; } else { echo "Success! Database exported to " . $download_path . "/backup.sql"; }
代码解释
增强版代码现在包含以下功能:
结论
此改进的 PHP 代码为导出 MySQL 数据库提供了灵活的解决方案,提供手动保存和直接下载选项。它使用户能够更好地控制他们的数据库备份和恢复需求。
以上是如何使用 PHP 导出 MySQL 数据库以及用户定义的下载/保存位置?的详细内容。更多信息请关注PHP中文网其他相关文章!