PHP code example of ijiabao / laravel-dbdump
1. Go to this page and download the library: Download ijiabao/laravel-dbdump library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ijiabao / laravel-dbdump example snippets
// 导出
$action = \DbDump::export($full_file);
// 导入
$action = \DbDump::import($full_file);
bash
# 导出, 默认保存在 resource/dbdump/migrate.sql
php artisan db:dump export
# 导入
php artisan db:dump import