Backup MySQL database with CodeIgniter

前端 未结 15 1527
一生所求
一生所求 2020-12-30 06:39

I have been looking into the user guide which came with CodeIgniter. I became very interested with the dbutil() method. Particularly the following line of code:

15条回答
  •  -上瘾入骨i
    2020-12-30 07:16

    Try this one...it has been tested...if you are going to use mysqli then it will works fine...you may put your code in your controller or model but i suggest to keep this one in your_model & call this function from your_controller...

    public function db_backup()
    {
           $this->load->dbutil();   
           $backup =& $this->dbutil->backup();  
           $this->load->helper('file');
           write_file('your_file_path/your_DB.zip', $backup); 
    }
    

提交回复
热议问题