Limit download speed using PHP

Source: Internet
Author: User

When you are doing O & M, you will often encounter a problem, that is, someone downloads something in the office, affecting Internet access and office work. If the same problem occurs on the server, it is estimated that the boss will get angry and things will get worse ...... Today, I would like to recommend several lines of code to limit the network speed of PHP. I hope to help you.

[Code][PHP] Code view sourcePrint?01// local file that should be send to the client02$local_file 'test-file.zip';03 04// filename that the user gets as default05$download_file 'your-download-name.zip';06 07// set the download rate limit (=> 20,5 kb/s)08$download_rate = 20.5;09 10if(file_exists($local_file) && is_file($local_file)) {11 12 // send headers13 header('Cache-control: private');14 header('Content-Type: application/octet-stream');15 header('Content-Length: '.filesize($local_file));16 header('Content-Disposition: filename='.$download_file);17 18 // flush content19 flush();20 21 // open file stream22 $file fopen($local_file"r");23 24 while (!feof($file)) {25 26 // send the current file part to the browser27 print fread($fileround($download_rate * 1024));28 29 // flush the content to the browser30 flush();31 32 // sleep one second33 sleep(1);34 }35 36 // close file stream37 fclose($file);38 39}40 41else {42 die('Error: The file '.$local_file.' does not exist!');43}

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.