Laravel 5 下载文件
laravel 下载文件提供了很多方法,可以使用 Stroage。laravel 5 自己带的文件系统是非常强大的,提供了很多方法,并且还支持远程存储等等。也可以直接使用 Response,laravel 5 的 Response也是基于 Syfmony的 Symfony\Component\HttpFoundation \Response的进一步封装。
实践出真理
昨天做了一个下载文件的功能,原本我以为使用 Stroage就要以完成所有的操作了,查看了官网文档发现,下载文件它最终还是得使用 Response的 download方法,既然这样那何不直接使用 Response的 download方法呢?当然前提是我已经知道文件的绝对路径或相对路径。
Storage默认的路径是在 /storage/app目录,如果不对路径进行设置的话,使用 Storage里的方法获取文件或保存文件都会在这个目录下。
可我保存的文件并不在这个目录,如果有绝对路径,那最简单的方法就是直接使用 download方法就行了。
如果是远程ftp的话就得使用 Storage,选设置好ftp服务然后 get下来然后传入 Response::download()方法中,使用方法与下面类似。
return response()->download($resource['path'] . $resource['name'], $resource['original_name']);
先看看 download这个方法:
/** * Create a new file download response. * * @param \SplFileInfo|string $file * @param string $name * @param array $headers * @param string|null $disposition * @return \Symfony\Component\HttpFoundation\BinaryFileResponse */ public function download($file, $name = null, array $headers = [], $disposition = 'attachment');
- 第一个是文件的绝对路径或文件(必传) \SplFileInfo 或 string类型
- 第二个是下载后保存的文件名(选传),如果不传的话下载后保存的文件名将与在服务器保存的文件名一致 string类型
- 第二个是header(选传) array 类型
- 第三个是描述?这个我也没试过,不造是啥
就这样,下载文件就这么简单,先简单写点吧,laravel的教程网上实在是太多了,其实我并不太想写laravel的东西,因为并不怎么喜欢这个框架,虽然很方便。

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
