사바이캅

php 스크립트로 간단히 mysql 백업하기

phpmyadmin 들어가지않고 
php로 간단하게 sql 백업 받는 소스입니다.

backup_tables('localhost','ID','PW','DB');  의 코드를 본인의 계정에 맞게
수정하셔서 쓰시면 됩니다. 
코드를 실행하면 20121111.sql 처럼 파일이 생성됩니다.

[code]
<?php
backup_tables('localhost','ID','PW','DB');



function backup_tables($host,$user,$pass,$name,$tables = '*')
{
  
  $link = mysql_connect($host,$user,$pass);
  mysql_select_db($name,$link);
  
  //get all of the tables
  if($tables == '*')
  {
    $tables = array();
    $result = mysql_query('SHOW TABLES');
    while($row = mysql_fetch_row($result))
    {
      $tables[] = $row[0];
    }
  }
  else
  {
    $tables = is_array($tables) ? $tables : explode(',',$tables);
  }
  

  foreach($tables as $table)
  {
    $result = mysql_query('SELECT * FROM '.$table);
    $num_fields = mysql_num_fields($result);
    
    $return.= 'DROP TABLE '.$table.';';
    $row2 = mysql_fetch_row(mysql_query('SHOW CREATE TABLE '.$table));
    $return.= "\n\n".$row2[1].";\n\n";
    
    for ($i = 0; $i < $num_fields; $i++) 
    {
      while($row = mysql_fetch_row($result))
      {
        $return.= 'INSERT INTO '.$table.' VALUES(';
        for($j=0; $j<$num_fields; $j++) 
        {
          $row[$j] = addslashes($row[$j]);
          $row[$j] = ereg_replace("\n","\\n",$row[$j]);
          if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
          if ($j<($num_fields-1)) { $return.= ','; }
        }
        $return.= ");\n";
      }
    }
    $return.="\n\n\n";
  }
  

  $handle = fopen('db-backup-'.time().'-'.(md5(implode(',',$tables))).'.sql','w+');
  fwrite($handle,$return);
  fclose($handle);
}
?>
[/code]
|

댓글 5개

좋네요
유용하게 쓰겠습니다~
엌 편하네요 감사합니다!
감사합니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 5,022
13년 전 조회 6,558
13년 전 조회 2,154
13년 전 조회 3,417
13년 전 조회 2,498
13년 전 조회 1,468
13년 전 조회 3,199
13년 전 조회 2,859
13년 전 조회 1,645
13년 전 조회 1,549
13년 전 조회 4,076
13년 전 조회 2,494
13년 전 조회 1,448
13년 전 조회 1,378
13년 전 조회 9,013
13년 전 조회 5,512
13년 전 조회 8,641
13년 전 조회 1,600
13년 전 조회 2,287
13년 전 조회 2,739
13년 전 조회 2,123
13년 전 조회 3,639
13년 전 조회 1,849
13년 전 조회 1,995
13년 전 조회 1,447
13년 전 조회 2,042
13년 전 조회 2,169
13년 전 조회 1.3만
13년 전 조회 1,976
13년 전 조회 5,475
13년 전 조회 2,477
13년 전 조회 1,530
13년 전 조회 1,844
13년 전 조회 4,737
13년 전 조회 1,812
13년 전 조회 5,454
13년 전 조회 1,530
13년 전 조회 1,709
13년 전 조회 2,042
13년 전 조회 9,545
13년 전 조회 2,357
13년 전 조회 3,418
13년 전 조회 2,611
13년 전 조회 2,770
13년 전 조회 2,926
13년 전 조회 1,881
13년 전 조회 2,068
13년 전 조회 1.8만
13년 전 조회 3,239
13년 전 조회 5,275
13년 전 조회 2,513
13년 전 조회 3,023
13년 전 조회 2,981
13년 전 조회 1.7만
13년 전 조회 1,876
13년 전 조회 1,812
13년 전 조회 1,597
13년 전 조회 2,609
13년 전 조회 4,087
13년 전 조회 4,223
13년 전 조회 3,093
13년 전 조회 6,477
13년 전 조회 3,728
13년 전 조회 6,867
13년 전 조회 2,553
13년 전 조회 2.2만
13년 전 조회 1,789
13년 전 조회 2,328
13년 전 조회 1.8만
13년 전 조회 3,569
13년 전 조회 1,887
13년 전 조회 4,572
13년 전 조회 2,075
13년 전 조회 2,217
13년 전 조회 1,674
13년 전 조회 3,411
13년 전 조회 2,385
13년 전 조회 1,548
13년 전 조회 1,711
13년 전 조회 8,291
13년 전 조회 3,189
13년 전 조회 1,866
13년 전 조회 2,104
13년 전 조회 3,770
13년 전 조회 1,926
13년 전 조회 2만
13년 전 조회 3,834
13년 전 조회 3,575
13년 전 조회 5,709
13년 전 조회 2,831
13년 전 조회 1,689
13년 전 조회 1,882
13년 전 조회 1.7만
13년 전 조회 1,618
13년 전 조회 3,013
13년 전 조회 2,573
13년 전 조회 2,143
13년 전 조회 2,022
13년 전 조회 2,161
13년 전 조회 2.4만