Home > php教程 > PHP源码 > php实现文件下载!

php实现文件下载!

PHP中文网
Release: 2016-05-25 17:12:20
Original
1044 people have browsed it
  1. 实现php文件安全下载! 

public function downloads($name){
        $name_tmp = explode("_",$name);
        $type = $name_tmp[0];
        $file_time = explode(".",$name_tmp[3]);
        $file_time = $file_time[0];
        $file_date = date("Y/md",$file_time);
        $file_dir = SITE_PATH."/data/uploads/$type/$file_date/";    
         
        if (!file_exists($file_dir.$name)){
            header("Content-type: text/html; charset=utf-8");
            echo "File not found!";
            exit; 
        } else {
            $file = fopen($file_dir.$name,"r"); 
            Header("Content-type: application/octet-stream");
            Header("Accept-Ranges: bytes");
            Header("Accept-Length: ".filesize($file_dir . $name));
            Header("Content-Disposition: attachment; filename=".$name);
            echo fread($file, filesize($file_dir.$name));
            fclose($file);
        }
    }
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template