この記事では、PHP でファイルのダウンロード速度を制御する方法を主に紹介し、サンプルを使用して 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 メソッドPHP はディレクトリ トラバーサルと削除を実装しますdir class## に基づいて#php は配列を使用してドロップダウン リスト ボックスを設定します
以上がファイルのダウンロード速度を制御する PHP コードの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。