Heim >Backend-Entwicklung >PHP-Tutorial >php实现MYSQL的备份与还原

php实现MYSQL的备份与还原

WBOY
WBOYOriginal
2016-07-25 08:59:211141Durchsuche
  1. class dbBackup {
  2. public $host='localhost'; //数据库地址
  3. public $user='root'; //登录名
  4. public $pwd=''; //密码
  5. public $database; //数据库名
  6. public $charset='utf8'; //数据库连接编码:mysql_set_charset
  7. }
复制代码

二、添加数据库连接function。

  1. /**
  2. * 连接数据库 ...
  3. */
  4. function db() {
  5. $con = mysql_connect($this->host,$this->user,$this->pwd);
  6. if (!$con){
  7. die('Could not connect');
  8. }
  9. $db_selected = mysql_select_db($this->database, $con);
  10. if (!$db_selected) {
  11. die('Can\'t use select db');
  12. }
  13. mysql_set_charset($this->charset);  //设置编码
  14. return $con;
  15. }
复制代码

三、查询数据库表集合

  1. /**
  2. * 表集合 ...
  3. */
  4. function tblist() {
  5. $list=array();
  6. $rs=mysql_query("SHOW TABLES FROM $this->database");
  7. while ($temp=mysql_fetch_row($rs)) {
  8. $list[]=$temp[0];
  9. }
  10. return $list;
  11. }
复制代码

四、查询表结构

  1. /**

  2. * 表结构SQL ...
  3. */
  4. function sqlcreate() {
  5. $sql='';
  6. $tb=$this->tblist();
  7. foreach ($tb as $v) {
  8. $rs=mysql_query("SHOW CREATE TABLE $v");
  9. $temp=mysql_fetch_row($rs);
  10. $sql.="-- 表的结构:{$temp[0]} --\r\n";
  11. $sql.="{$temp[1]}";
  12. $sql.=";-- --\r\n\r\n";
  13. }
  14. return $sql;

  15. }
复制代码

注:$sql.=";-- --\r\n\r\n"; 每句SQL后面必须加上分号(;)分割,MYSQL导入才能识别。-- -- 是程序对SQL语句分割的标识,可以自定义但必须是注释语句,否则影响SQL语句。\r\n无实际意义用于文本美观。

五、INSERT INTO语句

  1. /**
  2. * 数据插入SQL ...
  3. */
  4. function sqlinsert() {
  5. $sql='';
  6. $tb=$this->tblist();
  7. foreach ($tb as $v) {
  8. $rs=mysql_query("SELECT * FROM $v");
  9. if (!mysql_num_rows($rs)) {//无数据返回
  10. continue;
  11. }
  12. $sql.="-- 表的数据:$v --\r\n";
  13. $sql.="INSERT INTO `$v` VALUES\r\n";
  14. while ($temp=mysql_fetch_row($rs)) {
  15. $sql.='(';
  16. foreach ($temp as $v2) {
  17. if ($v2===null) {
  18. $sql.="NULL,";
  19. }
  20. else {
  21. $v2=mysql_real_escape_string($v2);
  22. $sql.="'$v2',";
  23. }
  24. }
  25. $sql=mb_substr($sql, 0, -1);
  26. $sql.="),\r\n";
  27. }
  28. $sql=mb_substr($sql, 0, -3);
  29. $sql.=";-- --\r\n\r\n";
  30. }
  31. return $sql;
  32. }
复制代码

注意事项: 1.无数据返回时必须跳出本次循环,避免生成多余代码 2.当字段值为(NULL)时,插入字符为(NULL)而不是('NULL'),没有单引号。 3.$v2=mysql_real_escape_string($v2),这是必要的转义 4.mb_substr($sql, 0, -1)、mb_substr($sql, 0, -3),必须去除最后一个逗号(,) 否则SQL语句出错 5.$sql.=";-- --\r\n\r\n",详见第四步注

六、备份操作

  1. /**
  2. * 备份 ...
  3. * @param $filename 文件路径
  4. */
  5. function beifen($filename) {
  6. $this->db(); //连接数据库
  7. $sql=$this->sqlcreate();
  8. $sql2=$this->sqlinsert();
  9. $data=$sql.$sql2;
  10. return file_put_contents($filename, $data);
  11. }
复制代码

七、还原操作

  1. /**
  2. * 还原 ...
  3. * @param $filename 文件路径
  4. */
  5. function huanyuan($filename) {
  6. $this->db(); //连接数据库
  7. //删除数据表
  8. $list=$this->tblist();
  9. $tb='';
  10. foreach ($list as $v) {
  11. $tb.="`$v`,";
  12. }
  13. $tb=mb_substr($tb, 0, -1);
  14. if ($tb) {
  15. $rs=mysql_query("DROP TABLE $tb");
  16. if ($rs===false) {
  17. return false;
  18. }
  19. }
  20. //执行SQL
  21. $str=file_get_contents($filename);
  22. $arr=explode('-- --', $str);
  23. array_pop($arr);
  24. foreach ($arr as $v) {
  25. $rs=mysql_query($v);
  26. if ($rs===false) {
  27. return false;
  28. }
  29. }
  30. return true;
  31. }
复制代码

来看下调用示例。 1,备份示例:

  1. $x=new dbBackup();
  2. $x->database='test';
  3. $rs=$x->beifen('db.sql');
  4. var_dump($rs);
复制代码

2,还原示例:

  1. $x=new dbBackup();
  2. $x->database='test';
  3. $rs=$x->huanyuan('db.sql');
  4. var_dump($rs);
复制代码

完整代码:

  1. /**

  2. * php实现mysql备份与还原
  3. * 整理 程序员之家 bbs.it-home.org
  4. */
  5. class dbBackup {
  6. public $host='localhost'; //数据库地址
  7. public $user='root'; //登录名
  8. public $pwd=''; //密码
  9. public $database; //数据库名
  10. public $charset='utf8'; //数据库连接编码:mysql_set_charset
  11. /**
  12. * 备份 ...
  13. * @param $filename 文件路径
  14. */
  15. function beifen($filename) {
  16. $this->db(); //连接数据库
  17. $sql=$this->sqlcreate();
  18. $sql2=$this->sqlinsert();
  19. $data=$sql.$sql2;
  20. return file_put_contents($filename, $data);
  21. }
  22. /**
  23. * 还原 ...
  24. * @param $filename 文件路径
  25. */
  26. function huanyuan($filename) {
  27. $this->db(); //连接数据库
  28. //删除数据表
  29. $list=$this->tblist();
  30. $tb='';
  31. foreach ($list as $v) {
  32. $tb.="`$v`,";
  33. }
  34. $tb=mb_substr($tb, 0, -1);
  35. if ($tb) {
  36. $rs=mysql_query("DROP TABLE $tb");
  37. if ($rs===false) {
  38. return false;
  39. }
  40. }
  41. //执行SQL
  42. $str=file_get_contents($filename);
  43. $arr=explode('-- --', $str);
  44. array_pop($arr);
  45. foreach ($arr as $v) {
  46. $rs=mysql_query($v);
  47. if ($rs===false) {
  48. return false;
  49. }
  50. }
  51. return true;
  52. }
  53. /**
  54. * 连接数据库 ...
  55. */
  56. function db() {
  57. $con = mysql_connect($this->host,$this->user,$this->pwd);
  58. if (!$con){
  59. die('Could not connect');
  60. }
  61. $db_selected = mysql_select_db($this->database, $con);
  62. if (!$db_selected) {
  63. die('Can\'t use select db');
  64. }
  65. mysql_set_charset($this->charset); //设置编码
  66. return $con;
  67. }
  68. /**
  69. * 表集合 ...
  70. */
  71. function tblist() {
  72. $list=array();
  73. $rs=mysql_query("SHOW TABLES FROM $this->database");
  74. while ($temp=mysql_fetch_row($rs)) {
  75. $list[]=$temp[0];
  76. }
  77. return $list;
  78. }
  79. /**
  80. * 表结构SQL ...
  81. */
  82. function sqlcreate() {
  83. $sql='';
  84. $tb=$this->tblist();
  85. foreach ($tb as $v) {
  86. $rs=mysql_query("SHOW CREATE TABLE $v");
  87. $temp=mysql_fetch_row($rs);
  88. $sql.="-- 表的结构:{$temp[0]} --\r\n";
  89. $sql.="{$temp[1]}";
  90. $sql.=";-- --\r\n\r\n";
  91. }
  92. return $sql;

  93. }
  94. /**
  95. * 数据插入SQL ...
  96. */
  97. function sqlinsert() {
  98. $sql='';
  99. $tb=$this->tblist();
  100. foreach ($tb as $v) {
  101. $rs=mysql_query("SELECT * FROM $v");
  102. if (!mysql_num_rows($rs)) {//无数据返回
  103. continue;
  104. }
  105. $sql.="-- 表的数据:$v --\r\n";
  106. $sql.="INSERT INTO `$v` VALUES\r\n";
  107. while ($temp=mysql_fetch_row($rs)) {
  108. $sql.='(';
  109. foreach ($temp as $v2) {
  110. if ($v2===null) {
  111. $sql.="NULL,";
  112. }
  113. else {
  114. $v2=mysql_real_escape_string($v2);
  115. $sql.="'$v2',";
  116. }
  117. }
  118. $sql=mb_substr($sql, 0, -1);
  119. $sql.="),\r\n";
  120. }
  121. $sql=mb_substr($sql, 0, -3);
  122. $sql.=";-- --\r\n\r\n";
  123. }
  124. return $sql;
  125. }
  126. }
  127. //备份

  128. //$x=new dbBackup();
  129. //$x->database='test';
  130. //$rs=$x->beifen('db.sql');
  131. //var_dump($rs);
  132. //还原

  133. //$x=new dbBackup();
  134. //$x->database='test';
  135. //$rs=$x->huanyuan('db.sql');
  136. //var_dump($rs);
  137. ?>
复制代码
您可能感兴趣的文章: php数据库备份类 分享一个不错的php数据库备份类 php完整备份数据库与备份数据库中指定表的类 php mysql数据库备份类及调用方法 php实现mysql的备份与还原实例代码 php mysql备份的代码(xml应用) php数据备份:单表备份 整表备份 导入数据库


Stellungnahme:
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