最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php隐藏文件下载路径实例
时间:2022-06-24 21:30:36 编辑:袖梨 来源:一聚教程网
| 代码如下 | 复制代码 |
//设置头信息,强制下载文件 function download_send_headers($filename) { // disable caching $now = gmdate("D, d M Y H:i:s"); header("Expires: Tue, 03 Jul 2001 06:00:00 GMT"); header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate"); header("Last-Modified: {$now} GMT"); // force download header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download"); // disposition / encoding on response body header("Content-Disposition: attachment;filename={$filename}"); header("Content-Transfer-Encoding: binary"); } $file_name='download.csv'; $file_path=dirname ( __FILE__ ).'/file/'.$file_name; download_send_headers($file_name); readfile($file_path); exit; ?> |
|
相关文章
- tplink万兆路由器怎么设置(tplink万兆路由器设置方法) 09-07
- 无尽冬日英雄培养顺序 平民英雄培养攻略 09-07
- 蛋仔派对2026皮肤兑换码合集—礼包码永久可用汇总 09-07
- 疯狂水世界最强英雄排行榜 T0英雄强度一览 09-07
- 三国杀ol互通版破解版内置菜单 最新破解版本下载 09-07
- 三国杀ol互通版最强阵容搭配 T0阵容组合方案 09-07