您好,登錄后才能下訂單哦!
這篇文章給大家介紹使用php怎么對mysql數(shù)據(jù)庫進行分表分段備份,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
<?php 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ù)進行!'; $part++; //分段 //表名 //起點 //跳轉(zhuǎn) sleep(3); echo "<script>location.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 "<script>location.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; } ?>
關于使用php怎么對mysql數(shù)據(jù)庫進行分表分段備份就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。