This code will work correctly if I open browser at 127.0.0.1/load/files.
(Auto Download File)
ABCController.php
namespace AppHttpControllers;
use Response;
use File;
function download_file(){
return Response::download(public_path() . "/files/file_1.txt");
}
routes.php
Route::get('/load/files','ABCController@download_file');
Can I use 1 route and 1 function for download 2 files at the same time ? Such as
function download_file(){
return Response::download(["file_1.txt","file_2.txt"]); //this code not right
}
Thank you for any help.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…