cakephp中的数据库备份功能

时间:2013-07-26 05:41:58

标签: cakephp cakephp-2.0

我一直在尝试通过单击链接来实现数据库备份功能。我正在做的是将我的功能写入AppController&功能是......

    public function backup($tables = '*') {
        $this->layout = $this->autoLayout = $this->autoRender = false;
        if ($tables == '*') {
            $tables = array();
            $result = $this->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 = $this->query('SELECT * FROM ' . $table);
            $num_fields = mysql_num_fields($result);

            $return.= 'DROP TABLE ' . $table . ';';
            $row2 = mysql_fetch_row($this->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);
    }

从视图中我将其称为链接,在点击链接时,它会在所需的文件夹中创建我的文件...

 <li><?php echo $this->Html->link("Backup", "/app/backup/", array('class' => 'Backup tooltip')); ?></li>

它以致命的方式结束了我。请帮忙。

修改:

    public function admin_backup() {
        $this->layout = $this->autoLayout = $this->autoRender = false;
        $fileName = 'backUp_' . date("d-M-Y_h:i:s_") . time();
        if (exec('mysqldump --user=root --password= --host=localhost demosite > ' . UPLOAD_FULL_BACKUP_PATH . $fileName . '.sql')) {
            echo "Success";
        } else {
            echo "Failed";
        }
    }

我的新功能是它在Ubuntu上工作但不在Windows上工作。请帮忙。

2 个答案:

答案 0 :(得分:6)

在某些情况下使用exec()和mysqldump可能很容易,但在以下情况下它不起作用:

  • 您正在共享托管
  • Exec已停用
  • 未安装mysqldump

如果其中任何一个属实,那么您需要以下功能。 此函数处理NULL值和UTF-8数据。

用法:

将此功能放在任何控制器中,然后导航至:

http://yoursite.com/admin/yourcontroller/database_mysql_dump

这会将有效的MySQL转储作为.sql文件下载到浏览器。

/**
 * Dumps the MySQL database that this controller's model is attached to.
 * This action will serve the sql file as a download so that the user can save the backup to their local computer.
 *
 * @param string $tables Comma separated list of tables you want to download, or '*' if you want to download them all.
 */
function admin_database_mysql_dump($tables = '*') {

    $return = '';

    $modelName = $this->modelClass;

    $dataSource = $this->{$modelName}->getDataSource();
    $databaseName = $dataSource->getSchemaName();


    // Do a short header
    $return .= '-- Database: `' . $databaseName . '`' . "\n";
    $return .= '-- Generation time: ' . date('D jS M Y H:i:s') . "\n\n\n";


    if ($tables == '*') {
        $tables = array();
        $result = $this->{$modelName}->query('SHOW TABLES');
        foreach($result as $resultKey => $resultValue){
            $tables[] = current($resultValue['TABLE_NAMES']);
        }
    } else {
        $tables = is_array($tables) ? $tables : explode(',', $tables);
    }

    // Run through all the tables
    foreach ($tables as $table) {
        $tableData = $this->{$modelName}->query('SELECT * FROM ' . $table);

        $return .= 'DROP TABLE IF EXISTS ' . $table . ';';
        $createTableResult = $this->{$modelName}->query('SHOW CREATE TABLE ' . $table);
        $createTableEntry = current(current($createTableResult));
        $return .= "\n\n" . $createTableEntry['Create Table'] . ";\n\n";

        // Output the table data
        foreach($tableData as $tableDataIndex => $tableDataDetails) {

            $return .= 'INSERT INTO ' . $table . ' VALUES(';

            foreach($tableDataDetails[$table] as $dataKey => $dataValue) {

                if(is_null($dataValue)){
                    $escapedDataValue = 'NULL';
                }
                else {
                    // Convert the encoding
                    $escapedDataValue = mb_convert_encoding( $dataValue, "UTF-8", "ISO-8859-1" );

                    // Escape any apostrophes using the datasource of the model.
                    $escapedDataValue = $this->{$modelName}->getDataSource()->value($escapedDataValue);
                }

                $tableDataDetails[$table][$dataKey] = $escapedDataValue;
            }
            $return .= implode(',', $tableDataDetails[$table]);

            $return .= ");\n";
        }

        $return .= "\n\n\n";
    }

    // Set the default file name
    $fileName = $databaseName . '-backup-' . date('Y-m-d_H-i-s') . '.sql';

    // Serve the file as a download
    $this->autoRender = false;
    $this->response->type('Content-Type: text/x-sql');
    $this->response->download($fileName);
    $this->response->body($return);
}

感谢Sankalp提供此代码的起点。

我希望这有助于某人。

答案 1 :(得分:4)

该方法不存在

从问题:

  

将我的函数写入AppController

$result = $this->query('SHOW TABLES');

query是一个模型方法 - 它在Controller对象上不存在。要使问题中的代码生效,请在模型对象(任何模型)上调用查询,或者最好将整个代码移动到特定的模型方法中并调用它。

代码在错误的类

App控制器实际上是一个抽象类,它根本不应该是实例化的或Web可访问的。通过将代码放在App控制器的公共函数中,可以从任何控制器访问它,即:。

/posts/backup
/comments/backup
/users/backup

这不是一个好主意/设计。

如果有一个属于没有特定控制器/型号的功能; 创建模型以将模型逻辑放入(如果有的话)并且创建控制器以将该操作放入 - 例如(根据问题提出的问题)DbControllerDb模型。

使用mysqldump

为什么不just use mysqldump

exec('mysqldump --user=... --password=... --host=... DB_NAME > /path/to/output/file.sql');

使用php生成转储文件最多(很多)速度较慢,最坏的情况是生成无效的sql文件/无法完成(尤其与大型数据库相关)。