PHP implementation limit Download speed example

Source: Internet
Author: User
Tags flush sleep zip

  This article mainly introduces the PHP implementation limit download speed example, need friends can refer to the following

  Code as follows://local file, should be send to the client $local _file = ' test-file.zip ';  //filename that the user gets as default $download _file = ' your-download-name.zip ';  //Set the download rate limit (=> 20,5 kb/s) $download _rate = 20.5;   if (file_exists ($local _file) && is_file ($local _file)) {   //send headers  header (' Cache-control:private ');  header (' Content-type:application/octet-stream ');  header (' Content-length: ' FileSize ($local _file));  header (' content-disposition:filename= '. $download _file);    //flush Content  flush ();    //Open File stream   $file = fopen ($local _file, "R");    while (!feof ($file)) {   //send the current file part to the browser  print fread ($file, Rou nd ($download _rate * 1024));    //flush the content to the browser  flush ();    //Sleep One second  sleep (1); &NBSP}    //close file stream &Nbsp;fclose ($file);  }   Else { die (' error:the file '. $local _file. ' does not exist! ');}      
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.