将mysql表导出为SQL格式?

时间:2013-06-10 15:54:47

标签: php mysql database backup

是否可以通过PHP代码将包含其记录的表导出为SQL格式?我一直在环顾四周,我找到的只是将其导出为CSV文件。

但是我找到了以下代码:

backup_tables('localhost','root','','compare_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);
    }

    //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);
}

它输出以下错误:

  

注意:未定义的变量:return

  

不推荐使用:不推荐使用函数ereg_replace()

我想要的只是通过PHP将一个SINGLE表导出为.sql格式!....我不熟悉PHP,但希望你能帮助我!

2 个答案:

答案 0 :(得分:7)

不要重新发明轮子。你需要的东西几乎已经开箱即用了:

<?php
    $result = exec("/path/to/mysqldump -u$username -p$password your_database your_table > /desired/output/path/dump.sql");

您可能需要查看$result后手的内容,以确保一切顺利。

Reference manual here.

答案 1 :(得分:1)

您收到错误是因为您使用的是已弃用的函数ereg_replace

  

自PHP 5.3.0起,此功能已被弃用。非常不鼓励依赖此功能。

我建议您使用preg_replace()作为此功能的替代方案。