Home  >  Article  >  Backend Development  >  网页提供文件下载功能

网页提供文件下载功能

WBOY
WBOYOriginal
2016-06-23 14:22:101048browse

html php

html实现文件下载和用php实现有什么不同?
怎么让用户只能通过网页上的链接下载文件,不能通过地址去找到?

回复讨论(解决方案)

数据库中存放下载的路径,点击查询数据库,找到下载地址。

不过这个不是很安全,下载地址最终也会暴露

网页链接指向一个php,这个php根据地址去读取文件,然后分段输出

//第一个参数,自己可以把路径弄的复杂些$file = fopen($file_dir . $file_name,"r"); // 打开供下载的文件// 输入文件标签Header("Content-type: application/octet-stream");Header("Accept-Ranges: bytes");Header("Accept-Length: ".filesize($file_dir . $file_name));Header("Content-Disposition: attachment; filename=" . $file_name);// 输出文件内容// echo fread($file,filesize($file_dir . $file_name));//不输出fread($file,filesize($file_dir . $file_name));fclose($file);exit();


很容易找到的代码

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