我创建了一个以sql查询的形式备份表数据的控制器。在浏览器上,有三个复选框,其中包含3个表:order、posts和products。此外,当我选择这些表时,我希望它们存储在目录storage/app like backup\ on[date time].sql中,并从浏览器中自动下载。。当我单击“备份”时,出现了这个错误
文件\u放置\u内容(/home/vagrant/code/laravelbackup/storage/app/backup \u 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);
}
暂无答案!
目前还没有任何答案,快来回答吧!