PHP ダウンロード リモート ファイル クラスはブレークポイントの再開ダウンロードをサポートします

WBOY
リリース: 2016-07-29 08:39:11
オリジナル
1147 人が閲覧しました

使い方は簡単:

コードをコピーします コードは次のとおりです:


$object = new httpdownload();
$object->set_byfile($file)%N#H#%;//サーバー ファイル名、インクルード パス
$object->filename = $filename;//
$object->down​​load(); として保存されたファイル名をダウンロードします


3. ソース ファイル:

コードは次のとおりです:



クラス httpdownload {
var $data = null;
var $data_len = 0;
var $data_mod = 0;
var $data_type = 0;
var $データセクション = 0; //セクションのダウンロード
var $sentSize=0;
var $handler = array('auth' => null);
var $use_resume = true;
var $use_autoexit = false;
var $use_auth = false;
var $ファイル名 = null;
var $mime = null;
var $bufsize = 2048;
var $seek_start = 0;
var $seek_end = -1;
var $totalsizeref = 0;
var $bandwidth = 0;
var $speed = 0;
関数初期化() {
グローバル $HTTP_SERVER_VARS;
if ($this->use_auth) //認証を使用します
{
if (!$this->_auth()) //認証なし
{
header('WWW-Authenticate: Basic realm="入力してくださいユーザー名とパスワード"');
header('HTTP/1.0 401 Unauthorized');
header('ステータス: 401 未承認');
if ($this->use_autoexit) exit();
false を返します。
}
}
if ($this->mime == null) $this->mime = "アプリケーション/オクテットストリーム"; //デフォルトの mime
if (isset($_SERVER['HTTP_RANGE']) || isset($HTTP_SERVER_VARS['HTTP_RANGE']))
{
if (isset($HTTP_SERVER_VARS['HTTP_RANGE'])) $seek_range = substr ($HTTP_SERVER_VARS['HTTP_RANGE'] , strlen('bytes='));
else $seek_range = substr($_SERVER['HTTP_RANGE'] , strlen('bytes='));
$range =explode('-',$seek_range);
if ($range[0] > 0)
{
$this->seek_start = intval($range[0]);
}
if ($range[1] > 0) $this->seek_end = intval($range[1]);
else $this->seek_end = -1;
if (!$this->use_resume)
{
$this->seek_start = 0;
//header("HTTP/1.0 404 不正なリクエスト");
//header("ステータス: 400 不正なリクエスト");
//終了;
// false を返します。
}
else
{
$this->data_section = 1;
}
}
else
{
$this->seek_start = 0;
$this->seek_end = -1;
}
$this->sentSize=0;
true を返します。
}
function header($size,$seek_start=null,$seek_end=null) {
header('Content-type: ' . $this->mime);
header('Content-Disposition:attachment; filename="' . $this->filename . '"');
header('Last-Modified: ' . date('D, d M Y H:i:s GMT' , $this->data_mod));
if ($this->data_section && $this->use_resume)
{
header("HTTP/1.0 206 部分コンテンツ");
header("ステータス: 206 部分コンテンツ");
header('Accept-Range: バイト');
header("Content-Range: バイト $seek_start-$seek_end/$size");
header("Content-Length: " . ($seek_end - $seek_start + 1));
}
else
{
header("Content-Length: $size");
}
}
function download_ex($size)
{
if (!$this->initialize()) return false;
ignore_user_abort(true);
//ここでシーク終了を使用します
if ($this->seek_start > ($size - 1)) $this->seek_start = 0;
if ($this->seek_end seek_end = $size - 1;
$this->header($size,$seek,$this->seek_end);
$this->data_mod = time();
true を返します。
}
function download() {
if (!$this->initialize()) return false;
試してください
{
error_log("begin downloadn", 3,"/usr/local/www/apache22/LOGS/apache22_php.err");
$seek = $this->seek_start;
$speed = $this->speed;
$bufsize = $this->bufsize;
$パケット = 1;
//クリーンアップを実行します
@ob_end_clean();
$old_status =ignore_user_abort(true);
@set_time_limit(0);
$this->帯域幅 = 0;
$size = $this->data_len;
if ($this->data_type == 0) //ファイルからダウンロード
{
$size = filesize($this->data);
if ($seek > ($size - 1)) $seek = 0;
if ($this->ファイル名 == null) $this->ファイル名 = ベース名($this->data);
$res = fopen($this->data,'rb');
if ($seek) fseek($res , $seek);
if ($this->seek_end < $seek) $this->seek_end = $size - 1;
$this->header($size,$seek,$this->seek_end); //常に最後のシークを使用します
$size = $this->seek_end - $seek + 1;
while (!(connection_aborted() || connection_status() == 1) && $size > 0)
{
if ($size < $bufsize)
{
echo fread($res , $size);
$this->帯域幅 += $size;
$this->sentSize+=$size;
}
else
{
echo fread($res , $bufsize);
$this->帯域幅 += $bufsize;
$this->sentSize+=$bufsize;
}
$size -= $bufsize;
フラッシュ();
if ($speed > 0 && ($this->帯域幅 > $speed*$packet*1024))
{
sleep(1);
$パケット++;
}
}
fclose($res);
}
elseif ($this->data_type == 1) //文字列からダウンロード
{
if ($seek > ($size - 1)) $seek = 0;
if ($this->seek_end < $seek) $this->seek_end = $this->data_len - 1;
$this->data = substr($this->data , $seek , $this->seek_end - $seek + 1);
if ($this->filename == null) $this->filename = time();
$size = strlen($this->data);
$this->header($this->data_len,$seek,$this->seek_end);
while (!connection_aborted() && $size > 0) {
if ($size < $bufsize)
{
$this->bandwidth += $size;
$this->sentSize+=$size;
}
else
{
$this->帯域幅 += $bufsize;
$this->sentSize+=$bufsize;
}
echo substr($this->data , 0 , $bufsize);
$this->data = substr($this->data , $bufsize);
$size -= $bufsize;
フラッシュ();
if ($speed > 0 && ($this->帯域幅 > $speed*$packet*1024))
{
sleep(1);
$パケット++;
}
}
} else if ($this->data_type == 2) {
//リダイレクトヘッダーを送信するだけです
header('location: ' . $this->data);
}
if($this->totalsizeref==$this->sentSize )error_log("ダウンロード終了n", 3,"/usr/local/www/apache22/LOGS/apache22_php.err");
else error_log("ダウンロードはキャンセルされましたn", 3,"/usr/local/www/apache22/LOGS/apache22_php.err");
if ($this->use_autoexit) exit();
//古いステータスを復元
ignore_user_abort($old_status);
set_time_limit(ini_get("max_execution_time"));
}
catch(Exception $e)
{
error_log("ダウンロードをキャンセルn".$e, 3,"/usr/local/www/apache22/LOGS/apache22_php.err");
}
true を返します。
}
function set_byfile($dir) {
if (is_readable($dir) && is_file($dir)) {
$this->data_len = 0;
$this->data = $dir;
$this->data_type = 0;
$this->data_mod = filemtime($dir);
$this->totalsizeref = ファイルサイズ($dir);
true を返します。
} それ以外の場合は false を返します。
}
function set_bydata($data) {
if ($data == '') は false を返します。
$this->data = $data;
$this->data_len = strlen($data);
$this->data_type = 1;
$this->data_mod = time();
true を返します。
}
function set_byurl($data) {
$this->data = $data;
$this->data_len = 0;
$this->data_type = 2;
true を返します。
}
関数 set_lastmodtime($time) {
$time = intval($time);
if ($time $this->data_mod = $time;
}
function _auth() {
if (!isset($_SERVER['PHP_AUTH_USER'])) false を返します。
if (isset($this->handler['auth']) && function_exists($this->handler['auth']))
{
return $this->handler['auth']('認証' , $_SERVER['PHP_AUTH_USER'],$_SERVER['PHP_AUTH_PW']);
}
それ以外の場合は true を返します。 //ハンドラーを使用する必要があります
}
}
?>


以上は、php ダウンロード プログラム ファイルの種類をサポートし、側面のコンテンツを含む、PHP 教則に関心のある友人の助けになることを望みます。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!