您当前的位置: 首页 > 网站编程 > PHP教程 > php实现限制下载速度的示例

php实现限制下载速度的示例

作者:不详 来源:网络 发布时间: 2014-08-08 16:21 点击:
这篇文章主要介绍了php实现限制下载速度的示例,需要的朋友可以参考下 代码如下: // local file that 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

php实现限制下载速度的示例

  这篇文章主要介绍了php实现限制下载速度的示例,需要的朋友可以参考下

  代码如下:

  // local file that 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, round($download_rate * 1024));

  // flush the content to the browser

  flush();

  // sleep one second

  sleep(1);

  }

  // close file stream

  fclose($file);

  }

  else {

  die('Error: The file '.$local_file.' does not exist!');

  }
分享到:
本文"php实现限制下载速度的示例"由远航站长收集整理而来,仅供大家学习与参考使用。更多网站制作教程尽在远航站长站。
顶一下
(0)
0%
踩一下
(0)
0%
[点击 次] [返回上一页] [打印]
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 密码: 验证码:
关于本站 - 联系我们 - 网站声明 - 友情连接- 网站地图 - 站点地图 - 返回顶部
Copyright © 2007-2013 www.yhzhan.com(远航站长). All Rights Reserved .
远航站长:为中小站长提供最佳的学习与交流平台,提供网页制作与网站编程等各类网站制作教程.
官方QQ:445490277 网站群:26680406 网站备案号:豫ICP备07500620号-4