在開發(fā)業(yè)務(wù)系統(tǒng)過程中,數(shù)據(jù)庫是非常重要的一環(huán)。因此,對數(shù)據(jù)庫進行備份和恢復是非常必要的操作。本文將結(jié)合ThinkPHP6框架實例,介紹如何使用ThinkPHP6實現(xiàn)數(shù)據(jù)庫備份與恢復。
一、數(shù)據(jù)庫備份
1.1 環(huán)境準備
在進行數(shù)據(jù)庫備份之前,需要確認如下幾點:
1、需要設(shè)置好mysql數(shù)據(jù)庫的bin目錄地址,并把其路徑加入系統(tǒng)Path變量中;
2、需要安裝好mysqldump命令行工具;
3、確認在數(shù)據(jù)庫所在的機器上,執(zhí)行備份的用戶,有對數(shù)據(jù)庫執(zhí)行mysqldump命令的權(quán)限。
1.2 數(shù)據(jù)庫備份實現(xiàn)
1.2.1 配置備份參數(shù)
在config文件夾下創(chuàng)建database.php文件,設(shè)置數(shù)據(jù)庫連接信息和備份所需參數(shù)。
<?php return [ // 數(shù)據(jù)庫類型 'type' => 'mysql', // 數(shù)據(jù)庫連接DSN配置 'dsn' => '', // 服務(wù)器地址 'hostname' => 'localhost', // 數(shù)據(jù)庫名 'database' => 'test', // 數(shù)據(jù)庫用戶名 'username' => 'root', // 數(shù)據(jù)庫密碼 'password' => 'root', // 數(shù)據(jù)庫連接端口 'hostport' => '3306', // 數(shù)據(jù)庫連接參數(shù) 'params' => [], // 數(shù)據(jù)庫編碼默認采用utf8 'charset' => 'utf8', // 數(shù)據(jù)庫表前綴 'prefix' => 'think_', // 數(shù)據(jù)庫調(diào)試模式 'debug' => false, // 數(shù)據(jù)庫備份路徑,沒有則自動創(chuàng)建 'path' => '', // 數(shù)據(jù)庫備份卷大小,單位為字節(jié),設(shè)為0表示不限制備份大小 'part' => 20971520, // 數(shù)據(jù)庫備份文件壓縮格式,這里是gzip 'compress' => 'gzip', // 數(shù)據(jù)庫備份文件名 'filename' => '', // 數(shù)據(jù)庫備份文件是否需要壓縮 'zip' => true, // 數(shù)據(jù)庫備份文件是否需要分卷備份 'split' => true, // 數(shù)據(jù)庫備份時是否將存儲過程和觸發(fā)器一起備份 'level' => 9, // 數(shù)據(jù)庫備份文件的存儲路徑,最好為絕對路徑,這也是最關(guān)鍵的路徑 'path' => '/data/mysql/', ];
登錄后復制
1.2.2 編寫備份代碼
在app/controller下創(chuàng)建BackupController.php文件,并添加以下代碼。
<?php declare(strict_types=1); namespace appcontroller; use thinkacadeDb; class BackupController { protected $backupConfig; public function __construct() { $this->backupConfig = config('database'); } public function backup() { // 防止備份數(shù)據(jù)過程超時 set_time_limit(0); $database = $this->backupConfig['database']; $filename = date('Ymd-His', time()) . ".sql"; $path = $this->backupConfig['path'].$filename; // 檢查目錄是否存在或者是否有權(quán)限寫入 if(!is_dir($this->backupConfig['path'])){ mkdir($this->backupConfig['path'], 0755, true); }else{ if(!is_writeable($this->backupConfig['path'])){ chmod($this->backupConfig['path'], 0755); } } // 備份所有數(shù)據(jù)表 $result = Db::query("SHOW TABLES"); $tables = array(); foreach($result as $index => $row){ $tables[] = $row['Tables_in_'.$database]; } // 備份所有表結(jié)構(gòu)和表數(shù)據(jù) $content = ''; foreach($tables as $table){ $content = $content . "/*" . PHP_EOL; $content = $content . "表名:" . $table . PHP_EOL; $content = $content . "表結(jié)構(gòu):" . PHP_EOL; $content = $content . "*/" . PHP_EOL; $content = $content . $this->backupTableSchema($table); $content = $content . "/*" . PHP_EOL; $content = $content . "表數(shù)據(jù):" . PHP_EOL; $content = $content . "*/" . PHP_EOL; $content = $content . $this->buildInsertSql($table); } // 是否需要壓縮 if ($this->backupConfig['zip']) { $zip = new ZipArchive(); $zipfilename = $this->backupConfig['path'] . date('Ymd-His', time()) . ".zip"; if ($zip->open($zipfilename, ZipArchive::OVERWRITE) === TRUE) { $zip->addFile($path,$filename); $zip->close(); // 刪除非壓縮的文件 unlink($path); } else { // 備份失敗 } } } // 備份表結(jié)構(gòu) protected function backupTableSchema($table) { $database = $this->backupConfig['database']; $result = Db::query("SHOW CREATE TABLE `" . $table . "`"); $create = $result[0]['Create Table'] . ";" . PHP_EOL.PHP_EOL; return $create; } // 備份表數(shù)據(jù) protected function buildInsertSql($table) { $database = $this->backupConfig['database']; $result = Db::query("SELECT * FROM `" . $table . "`"); $insert = ''; foreach ($result as $key => $value) { $keys = array_keys($value); $values = array_map(array(Db::class, 'quote'), array_values($value)); $values = join(",", $values); $insert .= "INSERT INTO `" . $table . "` (`" . join("`,`", $keys) . "`) VALUES (" . $values . ");" . PHP_EOL; } $insert .= PHP_EOL; return $insert; } }
登錄后復制
1.2.3 執(zhí)行備份
在瀏覽器中輸入以下url地址即可執(zhí)行備份:
http://localhost/backup/backup
登錄后復制
1.3 數(shù)據(jù)庫恢復
1.3.1 編寫恢復代碼
在app/controller下創(chuàng)建RecoveryController.php文件,并添加以下代碼。
<?php declare(strict_types=1); namespace appcontroller; use thinkacadeDb; class RecoveryController { protected $backupConfig; public function __construct() { $this->backupConfig = config('database'); } public function recovery() { // 防止還原數(shù)據(jù)過程超時 set_time_limit(0); ini_set('memory_limit', '1024M'); $filename = input('get.filename'); // 讀取備份文件 if ($this->backupConfig['zip']) { $zip = new ZipArchive(); if ($zip->open($this->backupConfig['path'].$filename) === true) { $filename = $zip->getNameIndex(0); $zip->extractTo($this->backupConfig['path']); $zip->close(); } } $content = file_get_contents($this->backupConfig['path'] . $filename); // 使用";"分割內(nèi)容 $statements = explode(";", $content); // 開始事務(wù) Db::startTrans(); foreach ($statements as $index => $stmt) { if (trim($stmt) === '') { continue; } $results = Db::query($stmt); if ($results === false) { Db::rollback(); return false; } } // 提交事務(wù) Db::commit(); // 刪除非壓縮的文件 unlink($this->backupConfig['path'] . $filename); return true; } }
登錄后復制
1.3.2 執(zhí)行恢復
在瀏覽器中輸入以下url地址即可執(zhí)行恢復:
http://localhost/recovery/recovery?filename=20200101-121212.sql.zip
登錄后復制
以上為ThinkPHP6實現(xiàn)數(shù)據(jù)庫備份與恢復的實現(xiàn)方法,讀者可以將代碼應(yīng)用到自己的項目中,靈活運用其中的技巧,讓我們的業(yè)務(wù)更加健壯可靠。
以上就是如何使用ThinkPHP6實現(xiàn)數(shù)據(jù)庫備份與恢復的詳細內(nèi)容,更多請關(guān)注www.xfxf.net其它相關(guān)文章!