我在 Laravel 5 中编写代码来定期备份 MySQL 数据库。到目前为止,我的代码如下所示:
$filename = 'database_backup_'.date('G_a_m_d_y').'.sql';
$destination = storage_path() . '/backups/';
$database = \Config::get('database.connections.mysql.database');
$username = \Config::get('database.connections.mysql.username');
$password = \Config::get('database.connections.mysql.password');
$sql = "mysqldump $database --password=$password --user=$username --single-transaction >$destination" . $filename;
$result = exec($sql, $output); // TODO: check $result
// Copy database dump to S3
$disk = \Storage::disk('s3');
// ????????????????????????????????
// What goes here?
// ????????????????????????????????
我在网上看到了一些解决方案,建议我这样做:
$disk->put('my/bucket/' . $filename, file_get_contents($destination . $filename));
但是,对于大文件,使用 file_get_contents() 不是很浪费吗?有没有更好的解决方案?