分享一個php實現MYSQL備份的類庫

來源:互聯網
上載者:User

標籤:http   io   ar   for   檔案   資料   div   on   cti   

正好要研究如何備份資料庫,分享一個php實現MYSQL備份的類庫

<?php/******   備份資料庫結構 ******//****正好要研究如何備份資料庫,分享一個php實現MYSQL備份的類庫********/      /*      函數名稱:table2sql()      函數功能:把表的結構轉換成為SQL      函數參數:$table: 要進行提取的表名      返 回 值:返回提取後的結果,SQL集合      函數heiyeluren      */        function table2sql($table)      {          global $db;         $tabledump = "DROP TABLE IF EXISTS $table;\n";         $createtable = $db->query("SHOW CREATE TABLE $table");         $create = $db->fetch_row($createtable);         $tabledump .= $create[1].";\n\n";          return $tabledump;      }           /****** 備份資料庫結構和所有資料 ******/      /*      函數名稱:data2sql()      函數功能:把表的結構和資料轉換成為SQL      函數參數:$table: 要進行提取的表名      返 回 值:返回提取後的結果,SQL集合      函數heiyeluren      */     function data2sql($table)      {          global $db;         $tabledump = "DROP TABLE IF EXISTS $table;\n";         $createtable = $db->query("SHOW CREATE TABLE $table");         $create = $db->fetch_row($createtable);         $tabledump .= $create[1].";\n\n";            $rows = $db->query("SELECT * FROM $table");         $numfields = $db->num_fields($rows);         $numrows = $db->num_rows($rows);          while ($row = $db->fetch_row($rows))          {             $comma = "";             $tabledump .= "INSERT INTO $table VALUES(";              for($i = 0; $i < $numfields; $i++)              {                 $tabledump .= $comma."‘".mysql_escape_string($row[$i])."‘";                 $comma = ",";              }             $tabledump .= ");\n";          }         $tabledump .= "\n";             return $tabledump;      }?>
  • 相關文章推薦:
  • 教您在windows下安裝phpredis模組
  • 用php實現把txt檔案轉為htm的代碼
  • php自動刪除mysql死串連(Sleep)的方法
  • 本文來自:愛好Linux技術網
  • 本文連結:http://www.ahlinux.com/php/9088.html

分享一個php實現MYSQL備份的類庫

聯繫我們

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