php实现下载限制速度示例分享


Posted in PHP onFebruary 13, 2014
// 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 相关文章推荐
聊天室php&mysql(五)
Oct 09 PHP
第十节--抽象方法和抽象类
Nov 16 PHP
在PHP中读取和写入WORD文档的代码
Apr 09 PHP
php生成二维码的几种方式整理及使用实例
Jun 03 PHP
PHP网页游戏学习之Xnova(ogame)源码解读(十六)
Jun 30 PHP
ThinkPHP中ajax使用实例教程
Aug 22 PHP
php使用simplexml_load_file加载XML文件并显示XML的方法
Mar 19 PHP
php封装的验证码工具类完整实例
Oct 19 PHP
php readfile下载大文件失败的解决方法
May 22 PHP
对于Laravel 5.5核心架构的深入理解
Feb 22 PHP
phpinfo的知识点总结
Oct 10 PHP
thinkphp5 路由分发原理
Mar 18 PHP
php解压文件代码实现php在线解压
Feb 13 #PHP
显示youtube视频缩略图和Vimeo视频缩略图代码分享
Feb 13 #PHP
codeigniter教程之上传视频并使用ffmpeg转flv示例
Feb 13 #PHP
使用swoole扩展php websocket示例
Feb 13 #PHP
php实现图片添加水印功能
Feb 13 #PHP
php教程之phpize使用方法
Feb 12 #PHP
php教程之魔术方法的使用示例(php魔术函数)
Feb 12 #PHP
You might like
JS 网站性能优化笔记
2011/05/24 PHP
php中选择什么接口(mysql、mysqli)访问mysql
2013/02/06 PHP
PHP给源代码加密的几种方法汇总(推荐)
2018/02/06 PHP
TNC vs BOOM BO3 第三场2.13
2021/03/10 DOTA
学习JavaScript正则表达式
2015/11/13 Javascript
JS简单实现数组去重的方法示例
2017/03/27 Javascript
Nodejs中使用captchapng模块生成图片验证码
2017/05/18 NodeJs
深入理解JavaScript 参数按值传递
2017/05/24 Javascript
jquery.validate表单验证插件使用详解
2017/06/21 jQuery
VUE element-ui 写个复用Table组件的示例代码
2017/11/18 Javascript
微信小程序scroll-x失效的完美解决方法
2018/07/18 Javascript
Vue中JS动画与Velocity.js的结合使用
2019/02/13 Javascript
详解vue或uni-app的跨域问题解决方案
2020/02/21 Javascript
JavaScript find()方法及返回数据实例
2020/04/30 Javascript
谈谈JavaScript令人迷惑的==与+
2020/08/31 Javascript
Python字符串中查找子串小技巧
2015/04/10 Python
关于Python面向对象编程的知识点总结
2017/02/14 Python
Python简单实现socket信息发送与监听功能示例
2018/01/03 Python
Python 支付整合开发包的实现
2019/01/23 Python
Python HTML解析器BeautifulSoup用法实例详解【爬虫解析器】
2019/04/05 Python
numpy下的flatten()函数用法详解
2019/05/27 Python
Django中使用 Closure Table 储存无限分级数据
2019/06/06 Python
django组合搜索实现过程详解(附代码)
2019/08/06 Python
线程安全及Python中的GIL原理分析
2019/10/29 Python
django框架ModelForm组件用法详解
2019/12/11 Python
Python 生成VOC格式的标签实例
2020/03/10 Python
Pycharm安装第三方库失败解决方案
2020/11/17 Python
实例讲解利用HTML5 Canvas API操作图形旋转的方法
2016/03/22 HTML / CSS
璀璨的珍珠、密钉和个性化珠宝:Lily & Roo
2021/01/21 全球购物
阿迪达斯越南官网:adidas越南
2020/07/19 全球购物
毕业生机械建模求职信
2013/10/14 职场文书
2015年环境监察工作总结
2015/07/23 职场文书
幼儿园园长新年寄语
2015/08/17 职场文书
优秀家长事迹材料(2016推荐版)
2016/02/29 职场文书
MySQL数据库压缩版本安装与配置详细教程
2021/05/21 MySQL
MySQL实战记录之如何快速定位慢SQL
2022/03/23 MySQL