Download .zip |
Info | Documentation | View files (18) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2019-10-10 (1 month ago) | Not yet rated by the users | Total: 191 This week: 4 | All time: 8,328 This week: 79 |
Version | License | PHP version | Categories | |||
db-backup-restore 1.0.0 | Custom (specified... | 5 | PHP 5, Databases, Systems administration |
Description | Author | |
This class can backup and restore MySQL database dumping SQL file. Recommendations MySQL Database Backup/Restore scripts |
|
DB BackUp and Restore Class
A PHP Class that helps take backup of DB as well as restore from backup.
You will need PHP 7.x and composer.
Install using composer: composer require djunehor/db-backup-restore
use \Djunehor\DB\BackUp;
/
*
*
* @param string $host
* @param string $username
* @param string $password
* @param string $database
* @param string $charset
* @param string $lang
*/
$db = new BackUp( 'localhost', 'root', '', 'test', 'utf8', 'en' );
// To backup DB
$db->backup ();
//To restore from backup
$db->restore ( __DIR__.'/backup/20121027194215_all_v1.sql')
Adapted from the class created by yanue
Check out the issues on GitHub and/or make a pull request to contribute!
Files |
File | Role | Description | ||
---|---|---|---|---|
.circleci (1 file) | ||||
build (1 file) | ||||
src (1 file, 1 directory) | ||||
.editorconfig | Data | Auxiliary data | ||
.scrutinizer.yml | Data | Auxiliary data | ||
.styleci.yml | Data | Auxiliary data | ||
.travis.yml | Data | Auxiliary data | ||
CHANGELOG.md | Data | Auxiliary data | ||
CODE_OF_CONDUCT.md | Data | Auxiliary data | ||
composer.json | Data | Auxiliary data | ||
CONTRIBUTING.md | Data | Auxiliary data | ||
ISSUE_TEMPLATE.md | Data | Auxiliary data | ||
LICENSE.md | Lic. | License text | ||
phpcs.xml.dist | Data | Auxiliary data | ||
phpunit.xml.dist | Data | Auxiliary data | ||
PULL_REQUEST_TEMPLATE.md | Data | Auxiliary data | ||
README.md | Doc. | Documentation |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.