【发布时间】:2014-07-02 08:58:03
【问题描述】:
这是我的控制器功能,我在其中使用数据库实用程序库为数据库创建备份。当我下载备份时,无法使用 zip 提取器打开 zip 文件。我该怎么办?
function backup_database() {
$file_name = 'accounts';
$date = date('@Y.m.d-H.ia');
$name = $file_name . $date;
// Load the DB utility class
$this->load->dbutil();
// Backup entire database and assign it to a variable
$backup = & $this->dbutil->backup(array('filename' => "$name.sql"));
// Load the file helper and write the file to server
$this->load->helper('file');
write_file("$name.zip", $backup);
// Load the download helper and send the file to desktop
$this->load->helper('download');
force_download("$name.zip", $backup);
}
【问题讨论】:
标签: database codeigniter backup codeigniter-2