PHP備份/還原MySQL資料庫的代碼

來源:互聯網
上載者:User

以下是代碼:

一、備份資料庫並下載到本地【db_backup.php】 複製代碼 代碼如下:<?php
// 設定SQL檔案儲存檔案名稱
$filename=date("Y-m-d_H-i-s")."-".$cfg_dbname.".sql";
// 所儲存的檔案名稱
header("Content-disposition:filename=".$filename);
header("Content-type:application/octetstream");
header("Pragma:no-cache");
header("Expires:0");
// 擷取當前分頁檔路徑,SQL檔案就匯出到此檔案夾內
$tmpFile = (dirname(__FILE__))."\\".$filename;
// 用MySQLDump命令匯出資料庫
exec("mysqldump -u$cfg_dbuser -p$cfg_dbpwd --default-character-set=utf8 $cfg_dbname > ".$tmpFile);
$file = fopen($tmpFile, "r"); // 開啟檔案
echo fread($file,filesize($tmpFile));
fclose($file);
exit;
?>

二、還原資料庫【db_restore.php】 複製代碼 代碼如下:<form id="form1" name="form1" method="post" action="">
【資料庫SQL檔案】:<input id="sqlFile" name="sqlFile" type="file" />
<input id="submit" name="submit" type="submit" value="還原" />
</form>
<?php
// 我的資料庫資訊都存放到config.php檔案中,所以載入此檔案,如果你的不是存放到該檔案中,注釋此行即可;
require_once((dirname(__FILE__).'/../../include/config.php'));
if ( isset ( $_POST['sqlFile'] ) )
{
$file_name = $_POST['sqlFile']; //要匯入的SQL檔案名稱
$dbhost = $cfg_dbhost; //資料庫主機名稱
$dbuser = $cfg_dbuser; //資料庫使用者名稱
$dbpass = $cfg_dbpwd; //資料庫密碼
$dbname = $cfg_dbname; //資料庫名

set_time_limit(0); //設定逾時時間為0,表示一直執行。當php在safe mode模式下無效,此時可能會導致匯入逾時,此時需要分段匯入
$fp = @fopen($file_name, "r") or die("不能開啟SQL檔案 $file_name");//開啟檔案
mysql_connect($dbhost, $dbuser, $dbpass) or die("不能串連資料庫 $dbhost");//串連資料庫
mysql_select_db($dbname) or die ("不能開啟資料庫 $dbname");//開啟資料庫

echo "<p>正在清空資料庫,請稍等....<br>";
$result = mysql_query("SHOW tables");
while ($currow=mysql_fetch_array($result))
{
mysql_query("drop TABLE IF EXISTS $currow[0]");
echo "清空資料表【".$currow[0]."】成功!<br>";
}
echo "<br>恭喜你清理MYSQL成功<br>";

echo "正在執行匯入資料庫操作<br>";
// 匯入資料庫的MySQL命令
exec("mysql -u$cfg_dbuser -p$cfg_dbpwd $cfg_dbname < ".$file_name);
echo "<br>匯入完成!";
mysql_close();
}
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.