response()->download()出错
Route::get('testResponseDownload',function(){
return response()->download(
realpath(base_path('public/images')).'/laravel-5-1.jpg',
'Laravel学院.jpg'
);
});报错:LogicException in MimeTypeGuesser.php line 135: Unable to guess the mime type as no guessers are available (Did you enable the php_fileinfo extension?)
1 Comment
看样子是你没有安装php_fileinfo这个扩展?