2

我一直在尝试通过单击链接来实现数据库备份功能。我正在做的是将我的函数写入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。请帮忙。

4

2 回答 2

6

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

  • 您正在使用共享主机
  • 执行被禁用
  • 未安装 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 提供此代码的起点。

我希望这可以帮助别人。

于 2013-12-03T08:15:00.013 回答
4

方法不存在

从问题:

将我的函数写入 AppController

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

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

代码在错误的类中

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

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

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

如果存在不属于特定控制器/模型的功能;创建一个模型以将模型逻辑放入(如果有的话)并创建一个控制器以将该操作放入其中 - 例如(考虑到问题所问的内容)aDbController和一个Db模型。

使用 mysqldump

为什么不只使用 mysqldump

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

用 php 生成转储文件,充其量是(很多)慢,最坏的情况是产生一个无效的 sql 文件/无法完成(尤其是与相当大的数据库相关)。

于 2013-07-26T08:56:46.940 回答