5

是否可以通过 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);
}

它输出以下错误:

注意:未定义的变量:返回

已弃用:函数 ereg_replace() 已弃用

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

4

2 回答 2

8

不要重新发明轮子。您需要的东西几乎是开箱即用的:

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

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

参考手册在这里。

于 2013-06-10T16:01:13.740 回答
1

您收到错误是因为您使用的是不推荐使用的功能ereg_replace

自 PHP 5.3.0 起,该函数已被弃用。强烈建议不要依赖此功能。

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

于 2013-06-10T15:57:34.710 回答