PHP File Download function (code)

Source: Internet
Author: User
PHP implementation of the file download function, the specific function code is as follows:

function Download ($file _url, $new _name= ") {

if (!isset ($file _url) | | Trim ($file _url) = = ") {
Return ' 500 ';
}
if (!file_exists ($file _url)) {//check if file exists
return ' 404 ';
}
$file _name=basename ($file _url);
$file _type=explode ('. ', $file _url);
$file _type= $file _type[count ($file _type)-1];
$file _name=trim ($new _name== ")? $file _name:urlencode ($new _name). $file _type;
$file _type=fopen ($file _url, ' R '); Open File
Input File Label
Header ("Content-type:application/octet-stream");
Header ("Accept-ranges:bytes");
Header ("Accept-length:". FileSize ($file _url));
Header ("content-disposition:attachment; Filename= ". $file _name);
Output file contents
Echo fread ($file _type,filesize ($file _url));
Fclose ($file _type);

}

Note that the above check file existence is through file_exists this function, but this function can only check the current server site directory inside the file, if it is the remote file on the Internet, you can use this site as follows: PHP to determine whether remote files exist method

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.