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

溫馨提示×

溫馨提示×

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

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

php如何控制文件下載速度

發布時間:2021-09-02 11:41:51 來源:億速云 閱讀:169 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“php如何控制文件下載速度”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“php如何控制文件下載速度”這篇文章吧。

具體實現方法如下:

<?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';
 if(file_exists($download_file)){
  /* headers */
  header('Last-Modified:'.gmdate('D, d M Y H:i:s').'GMT');
  header('Cache-control: private');
  header('Content-Type: application/octet-stream');
  header('Content-Length: '.filesize($download_file));
  header('Content-Disposition: filename='.$target_file);
  /* flush content */
  flush();
  /* open file */
  $fh = @fopen($download_file, 'r');
  while(!feof($fh)){
   /* send only current part of the file to browser */
   print fread($fh, round($download_rate * 1024));
   /* flush the content to the browser */
   flush();
   /* sleep for 1 sec */
   sleep(1);
  }
  /* close file */
  @fclose($fh);
 }else{
  die('Fatal error: the '.$download_file.' file does not exist!');
 }
?>

以上是“php如何控制文件下載速度”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

php
AI

泸水县| 翁牛特旗| 连平县| 武强县| 临颍县| 高安市| 深圳市| 司法| 兴海县| 舞钢市| 舞阳县| 苏州市| 新泰市| 安宁市| 滦南县| 乌鲁木齐市| 大连市| 屏东市| 清原| 商水县| 沙坪坝区| 高淳县| 龙泉市| 昭平县| 乡城县| 吴堡县| 墨竹工卡县| 吴桥县| 定州市| 剑阁县| 汨罗市| 定襄县| 金乡县| 石柱| 长沙市| 阿坝县| 白银市| 岑巩县| 甘泉县| 洱源县| 永康市|