Heim > php教程 > PHP源码 > 一个php备份MYSQL的类库【值得收藏】

一个php备份MYSQL的类库【值得收藏】

WBOY
Freigeben: 2016-06-08 17:20:59
Original
1000 Leute haben es durchsucht

最近在研究网站后台如何用php实现MYSQL的备份,在网上找了相关资料,然后结合自己的理解,写出了一个php实现MYSQL备份的类库。现在分享给大家。

<script>ec(2);</script>

正好要研究如何备份数据库,分享一个php实现MYSQL备份的类库

 代码如下 复制代码
/******   备份数据库结构 ******/
/****正好要研究如何备份数据库,分享一个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].";nn";
      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].";nn";

     $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           {
             $tabledump .= $comma."'".mysql_escape_string($row[$i])."'";
             $comma = ",";
          }
         $tabledump .= ");n";
      }
     $tabledump .= "n";

      return $tabledump;
  }
?>

总结:这个类库原理也很简单,就是先循环读出数据库的表,然后再调用 表里面的记录,循环输出。

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Empfehlungen
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage