首頁 >資料庫 >mysql教程 >如何使用 PHP 匯出 MySQL 資料庫以及使用者定義的下載/儲存位置?

如何使用 PHP 匯出 MySQL 資料庫以及使用者定義的下載/儲存位置?

Patricia Arquette
Patricia Arquette原創
2024-11-15 01:19:02924瀏覽

How to export MySQL database using PHP with user-defined download/save location?

使用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 代碼

以下是增強型PHP 代碼

    以下是增強型型PHP 程式碼,可讓使用者控制儲存和下載選項:
  • 程式碼說明
  • 增強後的程式碼現在包含下列功能:

使用者定義的下載/儲存位置: $download_path 變數允許使用者透過URL 參數download_path 指定下載位置。增加download 參數(?download=true),

結論這個改進的PHP 程式碼為導出MySQL 資料庫提供了靈活的解決方案,手動保存和直接下載選項。

以上是如何使用 PHP 匯出 MySQL 資料庫以及使用者定義的下載/儲存位置?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn