用PHP和XML備份MySQL資料庫_PHP教程

來源:互聯網
上載者:User
以下是在Linux下通過Apache+PHP對Mysql資料庫的備份的檔案代碼:
檔案一、Listtable.php (檔案列出資料庫中的所有表格,供選擇備份)
請選擇要備份的表格:
$con=mysql_connect( 'localhost ', 'root ', 'xswlily ');
$lists=mysql_list_tables( "embed ",$con);
//資料庫連接代碼
$i=0;
while($i$tb_name=mysql_tablename($lists,$i);
echo " ".$tb_name. "
";
//列出所有的表格
$i++;}
?>
檔案二、Backup.php
" ")&nbspheader( "Location:listtable.php ");?>
$con=mysql_connect( 'localhost ', 'root ', 'xswlily ');
$query= "select *&nbspfrom $table ";
//資料庫查詢
$result=mysql_db_query( "embed ",$query,$con);
$filestr= "< ". "?xml&nbspversion= "1.0 "&nbspencoding= "GB2312 "? ". "> ";
$filestr.= "< ".$table. "s> ";
while ($row=mysql_fetch_array($result))
//列出所有的記錄
{$filestr.= "< ".$table. "> ";
$fields=mysql_list_fields( "embed ",$table,$con);
$j=0;
//$num_fields=mysql_field_name($fields,$j);
//echo $num_fields;
while ($j$num_fields=mysql_field_name($fields,$j);
$filestr.= "< ".$num_fields. "> ";
$filestr.=$row[$j];
$filestr.= " ";
$j++;}
$filestr.= " ";
}
$filestr.= " ";
echo $filestr;
//以下是檔案作業碼
$filename=$table. ".xml ";
$fp=fopen( "$filename ", "w ");
fwrite($fp,$filestr);
fclose($fp);
Echo "資料表 ".$table. "已經備份成功! ";?>
通過以上檔案的操作就可以實現對資料庫中選定的表格進行備份.
以上主要介紹了通過PHP實現XML備份資料庫的操作方法,其實並不複雜,通過XML,我們可以備份各種各樣的資料庫,當然也可以通過相關的方法將備份的XML文檔恢複到資料庫中。

http://www.bkjia.com/PHPjc/446876.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/446876.htmlTechArticle以下是在Linux下通過Apache+PHP對Mysql資料庫的備份的檔案代碼: 檔案一、Listtable.php(檔案列出資料庫中的所有表格,供選擇備份) 請選擇要...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.