当前位置:首页 > PHP教程 > php应用 > 列表

PHP实现把MySQL数据库导出为.sql文件实例(仿PHPMyadmin导出功能)

发布:smiling 来源: PHP粉丝网  添加日期:2020-12-14 14:55:53 浏览: 评论:0 

这篇文章主要介绍了PHP实现把MySQL数据库导出为.sql文件实例(仿PHPMyadmin导出功能),需要的朋友可以参考下。

用php代码实现数据库备份可以使网站的管理变得非常便捷,我们可以直接进后台操作就能完成数据库的备份。

关键技术:

1. 首先要得到该数据库中有哪些表,所用函数 mysql_list_tables(),然后可以将获取的所有表名存到一个数组。

2. show create table 表名 可以获取表结构。

3. select * from 表名 取出所有记录,用循环拼接成 insert into... 语句。

实现代码:

  1. <?php 
  2.  
  3.  header("Content-type:text/html;charset=utf-8"); 
  4.  
  5.  //配置信息 
  6.  $cfg_dbhost = 'localhost'
  7.  $cfg_dbname = 'ftdm'
  8.  $cfg_dbuser = 'root'
  9.  $cfg_dbpwd = 'root'
  10.  $cfg_db_language = 'utf8'
  11.  $to_file_name = "ftdm.sql"
  12.  // END 配置 
  13.  //链接数据库 
  14.  $link = mysql_connect($cfg_dbhost,$cfg_dbuser,$cfg_dbpwd); 
  15.  mysql_select_db($cfg_dbname); 
  16.  //选择编码 
  17.  mysql_query("set names ".$cfg_db_language); 
  18.  //数据库中有哪些表 
  19.  $tables = mysql_list_tables($cfg_dbname); 
  20.  //将这些表记录到一个数组 
  21.  $tabList = array(); 
  22.  while($row = mysql_fetch_row($tables)){ 
  23.   $tabList[] = $row[0]; 
  24.  } 
  25.  
  26.  echo "运行中,请耐心等待...<br/>"
  27.  $info = "-- ----------------------------\r\n"
  28.  $info .= "-- 日期:".date("Y-m-d H:i:s",time())."\r\n"
  29.  $info .= "-- 仅用于测试和学习,本程序不适合处理超大量数据\r\n"
  30.  $info .= "-- ----------------------------\r\n\r\n"
  31.  file_put_contents($to_file_name,$info,FILE_APPEND); 
  32.  
  33.  //将每个表的表结构导出到文件 
  34.  foreach($tabList as $val){ 
  35.   $sql = "show create table ".$val
  36.   $res = mysql_query($sql,$link); 
  37.   $row = mysql_fetch_array($res); 
  38.   $info = "-- ----------------------------\r\n"
  39.   $info .= "-- Table structure for `".$val."`\r\n"
  40.   $info .= "-- ----------------------------\r\n"
  41.   $info .= "DROP TABLE IF EXISTS `".$val."`;\r\n"
  42.   $sqlStr = $info.$row[1].";\r\n\r\n"
  43.   //追加到文件 
  44.   file_put_contents($to_file_name,$sqlStr,FILE_APPEND); 
  45.   //释放资源 
  46.   mysql_free_result($res); 
  47.  } 
  48.  
  49.  //将每个表的数据导出到文件 
  50.  foreach($tabList as $val){ 
  51.   $sql = "select * from ".$val
  52.   $res = mysql_query($sql,$link); 
  53.   //如果表中没有数据,则继续下一张表 
  54.   if(mysql_num_rows($res)<1) continue
  55.   // 
  56.   $info = "-- ----------------------------\r\n"
  57.   $info .= "-- Records for `".$val."`\r\n"
  58.   $info .= "-- ----------------------------\r\n"
  59.   file_put_contents($to_file_name,$info,FILE_APPEND); 
  60.   //读取数据 
  61.   while($row = mysql_fetch_row($res)){ 
  62.    $sqlStr = "INSERT INTO `".$val."` VALUES ("
  63.    foreach($row as $zd){ 
  64.     $sqlStr .= "'".$zd."', "
  65.    } 
  66.    //去掉最后一个逗号和空格 
  67.    $sqlStr = substr($sqlStr,0,strlen($sqlStr)-2); 
  68.    $sqlStr .= ");\r\n"
  69.    file_put_contents($to_file_name,$sqlStr,FILE_APPEND); 
  70.   } 
  71.   //释放资源 
  72.   mysql_free_result($res); 
  73.   file_put_contents($to_file_name,"\r\n",FILE_APPEND); 
  74.  } 
  75.  
  76.  echo "OK!"
  77.  
  78. ?> 

Tags: PHPMyadmin导出MySQL

分享到: