php備份資料庫

來源:互聯網
上載者:User

標籤:

<?php    /**    *        *    @name  php備份資料庫     *    @param string   $DbHost       串連主機    *    @param string   $DbUser       使用者名稱    *    @param string   $DbPwd        串連密碼    *    @param string   $DbName       要備份的資料庫    *    @param string   $saveFileName 要儲存的檔案名稱, 預設檔案儲存在當前檔案夾中,以日期作區分    *    @return Null    *    @example backupMySqlData(‘localhost‘, ‘root‘, ‘123456‘, ‘YourDbName‘);    *    */    function backupMySqlData($DbHost, $DbUser, $DbPwd, $DbName, $saveFileName = ‘‘)    {        header("Content-type:text/html;charset=utf-8");        error_reporting(0);        set_time_limit(0);        echo ‘資料備份中,請稍候......<br />‘;        $link = mysql_connect($DbHost, $DbUser, $DbPwd) or die(‘資料庫連接失敗: ‘ . mysql_error());        mysql_select_db($DbName) or die(‘資料庫連接失敗: ‘ . mysql_error());        mysql_query(‘set names utf8‘);                // 聲明變數        $isDropInfo     = ‘‘;        $insertSQL      = ‘‘;        $row            = array();        $tables         = array();        $tableStructure = array();        $fileName       = ($saveFileName ? $saveFileName : ‘MySQL_data_bakeup_‘) . date(‘YmdHis‘) . ‘.sql‘;        // 枚舉該資料庫所有的表        $res = mysql_query("SHOW TABLES FROM $DbName");        while ($row = mysql_fetch_row($res)) {            $tables[] = $row[0];        }        mysql_free_result($res);        // 枚舉所有表的建立語句        foreach ($tables as $val) {            $res = mysql_query("show create table $val", $link);            $row = mysql_fetch_row($res);            $isDropInfo     = "DROP TABLE IF EXISTS `" . $val . "`;\r\n";            $tableStructure = $isDropInfo . $row[1] . ";\r\n";            file_put_contents($fileName, $tableStructure, FILE_APPEND);            mysql_free_result($res);        }        // 枚舉所有表的INSERT語句        foreach ($tables as $val) {            $res = mysql_query("select * from $val");            // 沒有資料的表不執行insert            while ($row = mysql_fetch_row($res)) {                $sqlStr = "INSERT INTO `".$val."` VALUES (";                foreach($row as $v){                    $sqlStr .= "‘$v‘,";                }                //去掉最後一個逗號                $sqlStr  = substr($sqlStr, 0, strlen($sqlStr) - 1);                $sqlStr .= ");\r\n";                file_put_contents($fileName, $sqlStr, FILE_APPEND);            }            mysql_free_result($res);        }        echo ‘資料備份成功!‘;    }   // 調用此方法     backupMySqlData(‘localhost‘, ‘root‘, ‘123456‘, ‘YouDbName‘);    ?>

 

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.