在PHP中下载有速度限制的文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在PHP中下载有速度限制的文件相关的知识,希望对你有一定的参考价值。
This snippet allows you set a limitation for download rate of the file that visitors download from your site.
<?php /* set here a limit of downloading rate (e.g. 10.20 Kb/s) */ $download_rate = 10.20; $download_file = 'download-file.zip'; $target_file = 'target-file.zip'; /* headers */ /* flush content */ /* open file */ /* send only current part of the file to browser */ /* flush the content to the browser */ /* sleep for 1 sec */ } /* close file */ }else{ } ?>
以上是关于在PHP中下载有速度限制的文件的主要内容,如果未能解决你的问题,请参考以下文章