使用 PHP 导出 MySQL 数据库使您能够创建备份或传输数据。该过程涉及创建包含数据库结构和数据的 SQL 转储文件。
导出整个数据库:
$tables = array(); $result = mysqli_query($con, "SHOW TABLES"); while ($row = mysqli_fetch_row($result)) { $tables[] = $row[0]; }
循环每个表并生成 SQL 转储:
$return = ''; foreach ($tables as $table) { $result = mysqli_query($con, "SELECT * FROM " . $table); $row2 = mysqli_fetch_row(mysqli_query($con, 'SHOW CREATE TABLE ' . $table)); $return .= 'DROP TABLE ' . $table . ';' . "\n\n" . $row2[1] . ";\n\n"; while ($row = mysqli_fetch_row($result)) { $return .= 'INSERT INTO ' . $table . ' VALUES('; for ($j = 0; $j < $num_fields; $j++) { $return .= '"' . addslashes($row[$j]) . '"'; if ($j < $num_fields - 1) { $return .= ','; } } $return .= ");\n"; } $return .= "\n\n\n"; }
将 SQL 转储写入文件:
$handle = fopen('backup.sql', 'w+'); fwrite($handle, $return); fclose($handle);
您可以通过以下方式自定义备份过程:
要导入数据库,只需通过 MySQL 客户端或工具使用 SQL 转储文件即可。
以上是如何使用 PHP 导出 MySQL 数据库?的详细内容。更多信息请关注PHP中文网其他相关文章!