·您当前的位置:首页 > 技术教程 > PHP教程 >

[php]导出数据库方法源代码范例

时间:2016-10-08 23:10酷播
[php]导出数据库方法源代码范例

[php]导出数据库方法源代码范例 (1)定义一个db_dump函数如下:

  1. <?PHP 
  2. function db_dump($host,$user,$pwd,$db) { 
  3.     $mysqlconlink = mysql_connect($host,$user,$pwd , true); 
  4.     if (!$mysqlconlink) 
  5.         echo sprintf('No MySQL connection: %s',mysql_error())."<br/>"; 
  6.     mysql_set_charset( 'utf8', $mysqlconlink ); 
  7.     $mysqldblink = mysql_select_db($db,$mysqlconlink); 
  8.     if (!$mysqldblink) 
  9.         echo sprintf('No MySQL connection to database: %s',mysql_error())."<br/>"; 
  10.     $tabelstobackup=array(); 
  11.     $result=mysql_query("SHOW TABLES FROM `$db`"); 
  12.     if (!$result) 
  13.         echo sprintf('Database error %1$s for query %2$s', mysql_error(), "SHOW TABLE STATUS FROM `$db`;")."<br/>"; 
  14.     while ($data = mysql_fetch_row($result)) { 
  15.             $tabelstobackup[]=$data[0]; 
  16.     } 
  17.     if (count($tabelstobackup)>0) { 
  18.         $result=mysql_query("SHOW TABLE STATUS FROM `$db`"); 
  19.         if (!$result) 
  20.             echo sprintf('Database error %1$s for query %2$s', mysql_error(), "SHOW TABLE STATUS FROM `$db`;")."<br/>"; 
  21.         while ($data = mysql_fetch_assoc($result)) { 
  22.             $status[$data['Name']]=$data; 
  23.         } 
  24.         if ($file = fopen("$db.sql", 'wb')) { 
  25.             fwrite($file, "-- ---------------------------------------------------------\n"); 
  26.             fwrite($file, "-- Database Name: $db\n"); 
  27.             fwrite($file, "-- ---------------------------------------------------------\n\n"); 
  28.             fwrite($file, "/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;\n"); 
  29.             fwrite($file, "/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;\n"); 
  30.             fwrite($file, "/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;\n"); 
  31.             fwrite($file, "/*!40101 SET NAMES '".mysql_client_encoding()."' */;\n"); 
  32.             fwrite($file, "/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;\n"); 
  33.             fwrite($file, "/*!40103 SET TIME_ZONE='".mysql_result(mysql_query("SELECT @@time_zone"),0)."' */;\n"); 
  34.             fwrite($file, "/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;\n"); 
  35.             fwrite($file, "/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;\n"); 
  36.             fwrite($file, "/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;\n"); 
  37.             fwrite($file, "/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;\n\n"); 
  38.             foreach($tabelstobackup as $table) { 
  39.                 echo sprintf('Dump database table "%s"',$table)."<br/>"; 
  40.                 need_free_memory(($status[$table]['Data_length']+$status[$table]['Index_length'])*3); 
  41.                 _db_dump_table($table,$status[$table],$file); 
  42.             } 
  43.             fwrite($file, "\n"); 
  44.             fwrite($file, "/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;\n"); 
  45.             fwrite($file, "/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;\n"); 
  46.             fwrite($file, "/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;\n"); 
  47.             fwrite($file, "/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;\n"); 
  48.             fwrite($file, "/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;\n"); 
  49.             fwrite($file, "/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;\n"); 
  50.             fwrite($file, "/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;\n"); 
  51.             fwrite($file, "/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;\n"); 
  52.             fclose($file); 
  53.             echo 'Database dump done!'."<br/>"; 
  54.         } else { 
  55.             echo 'Can not create database dump!'."<br/>"; 
  56.         } 
  57.     } else { 
  58.         echo 'No tables to dump'."<br/>"; 
  59.     } 
  60. function _db_dump_table($table,$status,$file) { 
  61.     fwrite($file, "\n"); 
  62.     fwrite($file, "--\n"); 
  63.     fwrite($file, "-- Table structure for table $table\n"); 
  64.     fwrite($file, "--\n\n"); 
  65.     fwrite($file, "DROP TABLE IF EXISTS `" . $table .  "`;\n"); 
  66.     fwrite($file, "/*!40101 SET @saved_cs_client     = @@character_set_client */;\n"); 
  67.     fwrite($file, "/*!40101 SET character_set_client = '".mysql_client_encoding()."' */;\n"); 
  68.     $result=mysql_query("SHOW CREATE TABLE `".$table."`"); 
  69.     if (!$result) { 
  70.         echo sprintf('Database error %1$s for query %2$s', mysql_error(), "SHOW CREATE TABLE `".$table."`")."<br/>"; 
  71.         return false; 
  72.     } 
  73.     $tablestruc=mysql_fetch_assoc($result); 
  74.     fwrite($file, $tablestruc['Create Table'].";\n"); 
  75.     fwrite($file, "/*!40101 SET character_set_client = @saved_cs_client */;\n"); 
  76.     $result=mysql_query("SELECT * FROM `".$table."`"); 
  77.     if (!$result) { 
  78.         echo sprintf('Database error %1$s for query %2$s', mysql_error(), "SELECT * FROM `".$table."`")."<br/>"; 
  79.         return false; 
  80.     } 
  81.     fwrite($file, "--\n"); 
  82.     fwrite($file, "-- Dumping data for table $table\n"); 
  83.     fwrite($file, "--\n\n"); 
  84.     if ($status['Engine']=='MyISAM') 
  85.         fwrite($file, "/*!40000 ALTER TABLE `".$table."` DISABLE KEYS */;\n"); 
  86.     while ($data = mysql_fetch_assoc($result)) { 
  87.         $keys = array(); 
  88.         $values = array(); 
  89.         foreach($data as $key => $value) { 
  90.             if($value === NULL) 
  91.                 $value = "NULL"
  92.             elseif($value === "" or $value === false) 
  93.                 $value = "''"
  94.             elseif(!is_numeric($value)) 
  95.                 $value = "'".mysql_real_escape_string($value)."'"; 
  96.             $values[] = $value; 
  97.         } 
  98.         fwrite($file, "INSERT INTO `".$table."` VALUES ( ".implode(", ",$values)." );\n"); 
  99.     } 
  100.     if ($status['Engine']=='MyISAM') 
  101.         fwrite($file, "/*!40000 ALTER TABLE ".$table." ENABLE KEYS */;\n"); 
  102. function need_free_memory($memneed) { 
  103.     if (!function_exists('memory_get_usage')) 
  104.         return; 
  105.     $needmemory=@memory_get_usage(true)+inbytes($memneed); 
  106.     if ($needmemory>inbytes(ini_get('memory_limit'))) { 
  107.         $newmemory=round($needmemory/1024/1024)+1 .'M'; 
  108.         if ($needmemory>=1073741824) 
  109.             $newmemory=round($needmemory/1024/1024/1024) .'G'; 
  110.         if ($oldmem=@ini_set('memory_limit', $newmemory)) 
  111.             echo sprintf(__('Memory increased from %1$s to %2$s','backwpup'),$oldmem,@ini_get('memory_limit'))."<br/>"; 
  112.         else 
  113.             echo sprintf(__('Can not increase memory limit is %1$s','backwpup'),@ini_get('memory_limit'))."<br/>"; 
  114.     } 
  115. function inbytes($value) { 
  116.     $multi=strtoupper(substr(trim($value),-1)); 
  117.     $bytes=abs(intval(trim($value))); 
  118.     if ($multi=='G') 
  119.         $bytes=$bytes*1024*1024*1024; 
  120.     if ($multi=='M') 
  121.         $bytes=$bytes*1024*1024; 
  122.     if ($multi=='K') 
  123.         $bytes=$bytes*1024; 
  124.     return $bytes; 
  125. ?> 

(2)使用方法:

  1. db_dump('数据库服务器', '数据库用户名', '数据库密码', '数据库名'); 

 

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器