1.打開數(shù)據(jù)庫備份頁面
創(chuàng)新互聯(lián)-云計算及IDC服務(wù)提供商,涵蓋公有云、IDC機房租用、服務(wù)器托管、等保安全、私有云建設(shè)等企業(yè)級互聯(lián)網(wǎng)基礎(chǔ)服務(wù),聯(lián)系電話:028-86922220
//php代碼,導(dǎo)出數(shù)據(jù)庫
public function exportSql() {
$dbName = C('DB_NAME'); //讀取配置文件中的數(shù)據(jù)庫用戶名、密碼、數(shù)據(jù)庫名
$dbUser = C('DB_USER');
$dbPwd = C('DB_PWD');
$fileName = date("Y-m-d")."_".$dbName.".sql";
$dumpFileName = "./sql_backup/".$fileName;
exec("D:/xampp/mysql/bin/mysqldump -u$dbUser -p$dbPwd $dbName $dumpFileName");
}
2.php exec函數(shù),執(zhí)行外部程序命令
exec(“D:/xampp/mysql/bin/mysqldump -u$dbUser -p$dbPwd $dbName $dumpFileName”);
此處執(zhí)行mysqldump命令,導(dǎo)出數(shù)據(jù)庫到$dumpFileName中,“D:/xampp/mysql/bin/”為mysqldump所在位置,“-u$dbUser -p$dbPwd”數(shù)據(jù)庫的用戶名和密碼(中間不要加空格),$dbName為要導(dǎo)出數(shù)據(jù)庫的名字
mysql數(shù)據(jù)庫的備份方式有很多;
例如:
1、使用mysqldump函數(shù)
mysqldump -u username -p dbname table1 table2 ... ? BackupName.sql
dbname參數(shù)表示數(shù)據(jù)庫的名稱
table1和table2參數(shù)表示需要備份的表的名稱,為空則整個數(shù)據(jù)庫備份;
BackupName.sql參數(shù)表設(shè)計備份文件的名稱,文件名前面可以加上一個絕對路徑。通常將數(shù)據(jù)庫被分成一個后綴名為sql的文件;
基本使用:
2、管理工具
分卷導(dǎo)出思路:統(tǒng)計sql語句變量的長度,按1個字符當(dāng)成1
字節(jié)比較,如果大于設(shè)定分卷大小,則寫入一個sql文件(我也不知道這樣統(tǒng)計是否穩(wěn)當(dāng),這也是借鑒其他的人的)。
分卷導(dǎo)入思路:按行讀取sql文件,將每一行當(dāng)作完整的sql語句存到數(shù)組再循環(huán)執(zhí)行插入數(shù)據(jù)庫就可以了,但是在創(chuàng)建表語句分了多行,這個需要單獨處理(就這個花了我好長時間的);
?php
//宋正河
轉(zhuǎn)載請注明出處
set_time_limit(0);
header('content-type:text/html;charset=utf-8');
mysql_connect('localhost','root','root');
mysql_select_db('test');
$table_array=get_tables('test');
mysql_query('set
names
utf8');
$filesize=1024*1024*4;
$start=$_GET['start']?$_GET['start']:0;
$part=$_GET['part']?$_GET['part']:'1';
$table_index=$_GET['table_index']?$_GET['table_index']:'0';
$table=$table_array[$table_index];
$num=200000000;//這個數(shù)要足夠大,可以是總記錄數(shù)
$backupdata='';
if($start=='0'){
$query="SHOW
CREATE
TABLE
`{$table}`";
$result
=
mysql_query($query);
$row
=
mysql_fetch_row($result);
$backupdata
.=
"DROP
TABLE
IF
EXISTS
`{$table}`;\n"
.
$row[1]
.
";\n\n";
}
$limit=($start=='0')?'':"
limit
$start,$num
";
$query="select
*
from
`{$table}`
$limit
";
$result=mysql_query($query);
$numfields
=
mysql_num_fields($result);
//統(tǒng)計字段數(shù)
while($row=mysql_fetch_row($result)){
$comma
=
'';
//存儲逗號
$backupdata_tmp
=
"INSERT
INTO
`{$table}`
VALUES
(";
for($i=0;
$i$numfields;
$i++){
$backupdata_tmp
.=
$comma
.
"'"
.
mysql_escape_string($row[$i])
.
"'";
$comma
=
',';
}
$backupdata_tmp
.=
");\n";
if(strlen($backupdata)+strlen($backupdata_tmp)
$filesize){
//寫入文件并跳轉(zhuǎn)
$file='data/'.$table.'-'.$part.'.sql';
file_put_contents($file,$backupdata);
echo
$file.'
備份完成,程序繼續(xù)進(jìn)行!';
$part++;
//分段
//表名
//起點
//跳轉(zhuǎn)
sleep(3);
echo
"scriptlocation.href='?start={$start}table_index={$table_index}part={$part}';/script";
exit;
}
$backupdata.=$backupdata_tmp;
$start++;
}
if($backupdata){
$file='data/'.$table.'-'.$part.'.sql';
file_put_contents($file,$backupdata);
}
echo
$table.'備份完成!br
/';
sleep(2);
$table_index++;
if($table_array[$table_index]){
echo
"scriptlocation.href='?table_index={$table_index}';/script";
exit;
}else{
echo
'恭喜你,數(shù)據(jù)庫備份完畢!';
}
function
get_tables($db){
$tq
=
mysql_list_tables($db);
while($tr
=
mysql_fetch_row($tq)){
$arrtb[]
=
$tr[0];
}
return
$arrtb;
}
?
以上所述就是本文的全部內(nèi)容了,希望大家能夠喜歡。
主要是個mysql dump操作,將數(shù)據(jù)庫的數(shù)據(jù)完整導(dǎo)入到txt或者其他文件中就可以的,和php的類相關(guān)很小啊,就是函數(shù)和mysql操作寫對了就好
網(wǎng)頁名稱:PHP備份多個數(shù)據(jù)庫 php備份數(shù)據(jù)庫代碼
文章路徑:http://jinyejixie.com/article42/hpcehc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設(shè)計公司、標(biāo)簽優(yōu)化、搜索引擎優(yōu)化、品牌網(wǎng)站建設(shè)、建站公司、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)