当前位置:网站首页>Laravel file stream download file
Laravel file stream download file
2022-06-26 04:22:00 【Scholar and】
// Download file stream
//$file_name:test.docx( File name with suffix )
//$file_dir:( Absolute path to file directory )
public function downloadFile($file_name, $file_dir)
{
// Check if the file exists
if (! file_exists ( $file_dir . $file_name ))
{
header('HTTP/1.1 404 NOT FOUND');
}
else
{
// Open the file in read-only and binary mode
$file = fopen ( $file_dir . $file_name, "rb" );
// Tell the browser that this is a file stream format
Header ( "Content-type: application/octet-stream" );
// The unit of measure of the requested scope
Header ( "Accept-Ranges: bytes" );
//Content-Length Is to specify the byte length of the data contained in the request or response
Header ( "Accept-Length: " . filesize ( $file_dir . $file_name) );
// Used to tell the browser , Files can be downloaded as attachments , The name of the downloaded file is $file_name The value of the variable .
Header ( "Content-Disposition: attachment; filename=" . $file_name );
// Read the contents of the file and output it directly to the browser
echo fread ( $file, filesize ( $file_dir . $file_name ) );
fclose ( $file );
exit ();
}
}
边栏推荐
- Analysis report on the development trend and operation status of China's environmental monitoring instrument industry from 2022 to 2028
- Add, delete, modify and query curd in PHP native SQL
- Mobile terminal pull-down loading pull-down loading data
- What preparation should I make before learning SCM?
- In 2022, what professional competitions can college students majoring in automation, electrical engineering and automation participate in?
- Force buckle 515 Find the maximum value in each tree row
- [Qunhui] this suite requires you to start PgSQL adapter service
- A brain map to summarize the needs analysis (a supplement to the actual situation at work)
- Clean up photo SCR virus / iframekill injection removal /iframekill removal photo scr
- There is no response to redirection and jump in the laravel constructor [original]
猜你喜欢
![PHP design function getmaxstr to find the longest symmetric string in a string - [original]](/img/45/d8dae9e605a2f411683db7a2d40d0b.jpg)
PHP design function getmaxstr to find the longest symmetric string in a string - [original]
![[Qunhui] import certificate](/img/1f/ab63b0556a60b98388b482d70f6156.jpg)
[Qunhui] import certificate

Modify the number of Oracle connections
![There is no response to redirection and jump in the laravel constructor [original]](/img/6b/5d9d7fe1348892d01a87d04f122dfc.jpg)
There is no response to redirection and jump in the laravel constructor [original]

Conditional variables for thread synchronization
![[Qunhui] this suite requires you to start PgSQL adapter service](/img/fb/1aea7eb833afc1a24531b612a98400.jpg)
[Qunhui] this suite requires you to start PgSQL adapter service

Knowledge of SQL - database design, backup and restore

Install dbeaver and connect Clickhouse

钉钉开放平台-小程序开发实战(钉钉小程序服务器端)
![Notes on enterprise wechat development [original]](/img/66/cd83f4f86b7c42921db45f07957c15.jpg)
Notes on enterprise wechat development [original]
随机推荐
Mysql8.0 configuring my SQL in INI file_ mode=NO_ AUTO_ CREATE_ User can start
Knowledge about SQL - DML
China air compressor manufacturing market demand analysis and investment prospect research report 2022-2028
Conditional variables for thread synchronization
Development trend and prospect forecast report of China's financial industry 2022-2028 Edition
钉钉开放平台-小程序开发实战(钉钉小程序服务器端)
2021/11/6-burpsuit packet capturing and web page source code modification
Tp6 multi table Association (table a is associated with table B, table B is associated with table C, and table d)
Construction of art NFT trading platform | NFT mall
Ubuntu installs PostgreSQL and uses omnidb to view
Threejs special sky box materials, five kinds of sky box materials are downloaded for free
SQL related knowledge - DDL
win10 系统打开的软件太小,如何变大(亲测有效)
Spark - understand parquet
Oracle data pump table
[Qunhui] command line acme SH automatically apply for domain name certificate
Report on the "fourteenth five year plan" and future development direction of global and Chinese indoor vertical farms from 2022 to 2028
Report on demand situation and development trend of China's OTC industry from 2022 to 2028
35 year old programmer fired Luna millions of assets and returned to zero in three days. Netizen: it's the same as gambling
Oracle 数据泵导表