帝国CMS模板大全
www.admin99.cn
www.92cms.cn 帝国CMS模板下载站!,情怀,养站,二次开发!源码需求比较大的一站式会员下载,价更省!!!

CodeIgniter框架备份数据库

导出txt格式:

// Load the DB utility class

$this->load->dbutil();

  

// Backup your entire database and assign it to a variable

$backup=&$this->dbutil->backup(array('format'=>'txt')); 

  

// Load the file helper and write the file to your server

$this->load->helper('file');

write_file('backup.sql',$backup);

 

gzip格式:

// Load the DB utility class

$this->load->dbutil();

  

// Backup your entire database and assign it to a variable

$backup=&$this->dbutil->backup(); 

  

// Load the file helper and write the file to your server

$this->load->helper('file');

write_file('mybackup.gz',$backup);

 

zip格式

// Load the DB utility class

$this->load->dbutil();

  

// Backup your entire database and assign it to a variable

$backup=&$this->dbutil->backup(array('format'=>'zip')); 

  

// Load the file helper and write the file to your server

$this->load->helper('file');

write_file('backup.zip',$backup);

 

赞(0)
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《CodeIgniter框架备份数据库》
文章链接:https://www.admin99.cn/6872
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。
QQ站长交流群:953950264

登录

找回密码

注册