2

リンクをクリックするだけでDBバックアップ機能を実装しようとしています。私がやっていることは、私の関数を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 アクセス可能になったりすることは想定されていません。アプリ コントローラーのパブリック関数にコードを配置することで、どのコントローラーからでもアクセスできるようになります。

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

それは良い考え/設計ではありません。

特定のコントローラー/モデルに属さない機能がある場合。モデルロジックを配置するモデルを作成し(ある場合)、そのアクションを配置するコントローラーを作成します-たとえば(質問が何を求めているかを考えると) aDbControllerDbモデル。

mysqldump を使用する

なぜmysqldump を使用しないのですか?

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

php を使用してダンプ ファイルを生成すると、せいぜい (かなり) 遅くなり、最悪の場合、無効な SQL ファイルが生成されるか、完了できません (特に、大きなデータベースに関連する場合)。

于 2013-07-26T08:56:46.940 に答える