How To Make Database Backup In Codeigniter

[Solved] How To Make Database Backup In Codeigniter | Php - Code Explorer | yomemimo.com
Question : how to make database backup in codeigniter

Answered by : enchanting-elk-db76ortlbi4w

// 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('/path/to/mybackup.gz', $backup);
// Load the download helper and send the file to your desktop
$this->load->helper('download');
force_download('mybackup.gz', $backup);

Source : https://codeigniter.com/userguide3/database/utilities.html#usage-example | Last Update : Fri, 19 Nov 21

Answers related to how to make database backup in codeigniter

Code Explorer Popular Question For Php