search
HomeBackend DevelopmentPHP Tutorial简述Laravel 5 下载文件

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的东西,因为并不怎么喜欢这个框架,虽然很方便。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

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-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

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.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

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' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

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

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

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: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

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

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

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

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

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:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!