使用PHP对MySQL数据库进行二进制安全备份

时间:2012-11-27 14:03:15

标签: php mysql

我使用http://davidwalsh.name/backup-mysql-database-php来备份我的mysql数据库。但它会破坏数据库中的二进制数据(blob)。这意味着,导入生成的文件会创建不可读的blob。

应该改变什么?

为方便起见,这是代码:

backup_tables('localhost','username','password','blog');


/* backup the db OR just a table */
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);
  }

  //cycle through
  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";
  }

  //save file
  $handle = fopen('db-backup-'.time().'-'.(md5(implode(',',$tables))).'.sql','w+');
  fwrite($handle,$return);
  fclose($handle);
}

1 个答案:

答案 0 :(得分:0)

我将接受这篇文章的评论。

当您从PHP中运行其他进程时,您应该检查返回代码,例如:

// execute process and capture output and return code in $out and $res
exec('/path/to/command', $out, $res);
if ($res) {
    // the process didn't return with code 0
}

在您的情况下,$out将为空,因为stderr用于打印错误消息;要显示捕获的输出中的那些,您可以像这样重定向stderr

exec('/path/to/command 2>&1', $out, $res);

一个更复杂的设置,其中另一个进程的各种输入/输出流可以单独处理涉及使用proc_open(),但这是非常先进的东西,在你的情况下可能不是必需的。