91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用php怎么對下載速度進行限制

發布時間:2020-12-25 15:33:16 來源:億速云 閱讀:194 作者:Leah 欄目:開發技術

本篇文章為大家展示了使用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怎么對下載速度進行限制,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

游戏| 宜君县| 安康市| 巴中市| 孝义市| 五寨县| 浦东新区| 青州市| 定南县| 宝山区| 章丘市| 静海县| 古蔺县| 湖口县| 临夏市| 马鞍山市| 图木舒克市| 登封市| 谢通门县| 万载县| 桂东县| 蒲江县| 定边县| 堆龙德庆县| 新巴尔虎左旗| 聂拉木县| 东丰县| 瑞安市| 武宁县| 武乡县| 徐水县| 阿瓦提县| 额尔古纳市| 闽清县| 包头市| 寻乌县| 巴林右旗| 巴林左旗| 怀柔区| 美姑县| 化德县|