我创建了一个控制器,该控制器以SQL查询的形式备份表数据。在浏览器上,有三个复选框,其中包含3个表:订单,帖子和产品。此外,当我选择这些表时,希望它们像 backup_on [Date-Time] .sql 一样存储在目录storage / app中,并自动下载直接从浏览器访问。。单击备份时,出现此错误
file_put_contents(/ home / vagrant / code / laravelBackup / storage / app / backup_on [2018-07-04 08:39:15] .sql):无法打开流:协议错误
预先感谢。这是我的代码:
public function download($output)
{
$time = Carbon::now()->toDateTimeString();
$file_name = 'backup_on[' . $time . '].sql';
// $file_name = 'database_backup_on_' . date('y-m-d') . '.sql';
// $file_name = 'backup.sql';
Storage::disk('local')->put($file_name, $output);
// Storage::lastModified($file_name);
$exists = Storage::disk('local')->exists($file_name);
if ($exists) {
// $name_of_file = 'backup';
$headers =
[
'Content-Description => File Transfer',
'Content-Type => application/octet-stream',
'Content-Disposition => attachment; filename=' . basename($file_name),
'Content-Transfer-Encoding => binary',
'Expires => 0',
ob_clean(),
flush(),
readfile($file_name),
unlink($file_name)
];
}
return Storage::download($file_name, $file_name, $headers);
}