主頁(yè) > 知識(shí)庫(kù) > php實(shí)現(xiàn)大文件斷點(diǎn)續(xù)傳下載實(shí)例代碼

php實(shí)現(xiàn)大文件斷點(diǎn)續(xù)傳下載實(shí)例代碼

熱門標(biāo)簽:智能電話機(jī)器人好公司門薩維 沛縣400電話辦理 AI電話機(jī)器人OEM貼牌 聊城電話外呼系統(tǒng)公司 德陽(yáng)中江如何申請(qǐng)400開頭電話 青白江地圖標(biāo)注 銅川電話機(jī)器人價(jià)格 江蘇電商外呼系統(tǒng)運(yùn)營(yíng)商 辦理重慶400電話

php實(shí)現(xiàn)大文件斷點(diǎn)續(xù)傳下載實(shí)例,看完你就知道超過(guò)100M以上的大文件如何斷點(diǎn)傳輸了,這個(gè)功能還是比較經(jīng)典實(shí)用的,畢竟大文件上傳功能經(jīng)常用得到。

require_once('download.class.php'); 
date_default_timezone_set('Asia/Shanghai'); 
error_reporting(E_STRICT); 
function errorHandler($errno, $errstr, $errfile, $errline) { 
 echo 'p>error:', $errstr, '/p>'; 
 exit(); 
} 
set_error_handler('errorHandler'); 
define('IS_DEBUG', true); 
$filePath = 'test.zip'; 
$mimeType = 'audio/x-matroska'; 
$range = isset($_SERVER['HTTP_RANGE']) ? $_SERVER['HTTP_RANGE'] : null; 
if (IS_DEBUG) { 
// $range = "bytes=1000-1999\n2000"; 
// $range = "bytes=1000-1999,2000"; 
// $range = "bytes=1000-1999,-2000"; 
// $range = "bytes=1000-1999,2000-2999"; 
} 
set_time_limit(0); 
$transfer = new Transfer($filePath, $mimeType, $range); 
if (IS_DEBUG) { 
 $transfer->setIsLog(true); 
} 
$transfer->send();

download.class.php

/** 
 * 文件傳輸,支持?jǐn)帱c(diǎn)續(xù)傳。 
 * 2g以上超大文件也有效 
 * @author MoXie 
 */ 
class Transfer { 
 /** 
  * 緩沖單元 
  */ 
 const BUFF_SIZE = 5120; // 1024 * 5 
 /** 
  * 文件地址 
  * @var String> 
  */ 
 private $filePath; 
 /** 
  * 文件大小 
  * @var String> Php超大數(shù)字 字符串形式描述 
  */ 
 private $fileSize; 
 /** 
  * 文件類型 
  * @var String> 
  */ 
 private $mimeType; 
 /** 
  * 請(qǐng)求區(qū)域(范圍) 
  * @var String> 
  */ 
 private $range; 
 /** 
  * 是否寫入日志 
  * @var Boolean> 
  */ 
 private $isLog = false; 
 /** 
  * 
  * @param String> $filePath 文件路徑 
  * @param String> $mimeType 文件類型 
  * @param String> $range 請(qǐng)求區(qū)域(范圍) 
  */ 
 function __construct($filePath, $mimeType = null, $range = null) { 
  $this->filePath = $filePath; 
  $this->fileSize = sprintf('%u', filesize($filePath)); 
  $this->mimeType = ($mimeType != null) ? $mimeType : "application/octet-stream"; // bin 
  $this->range = trim($range); 
 } 
 /** 
  * 獲取文件區(qū)域 
  * @return Map> {'start':long,'end':long} or null 
  */ 
 private function getRange() { 
  /** 
   * Range: bytes=-128 
   * Range: bytes=-128 
   * Range: bytes=28-175,382-399,510-541,644-744,977-980 
   * Range: bytes=28-175\n380 
   * type 1 
   * RANGE: bytes=1000-9999 
   * RANGE: bytes=2000-9999 
   * type 2 
   * RANGE: bytes=1000-1999 
   * RANGE: bytes=2000-2999 
   * RANGE: bytes=3000-3999 
   */ 
  if (!empty($this->range)) { 
   $range = preg_replace('/[\s|,].*/', '', $this->range); 
   $range = explode('-', substr($range, 6)); 
   if (count($range)  2) { 
    $range[1] = $this->fileSize; // Range: bytes=-100 
   } 
   $range = array_combine(array('start', 'end'), $range); 
   if (empty($range['start'])) { 
    $range['start'] = 0; 
   } 
   if (!isset($range['end']) || empty($range['end'])) { 
    $range['end'] = $this->fileSize; 
   } 
   return $range; 
  } 
  return null; 
 } 
 /** 
  * 向客戶端發(fā)送文件 
  */ 
 public function send() { 
  $fileHande = fopen($this->filePath, 'rb'); 
  if ($fileHande) { 
   // setting 
   ob_end_clean(); // clean cache 
   ob_start(); 
   ini_set('output_buffering', 'Off'); 
   ini_set('zlib.output_compression', 'Off'); 
   $magicQuotes = get_magic_quotes_gpc(); 
//   set_magic_quotes_runtime(0); 
   // init 
   $lastModified = gmdate('D, d M Y H:i:s', filemtime($this->filePath)) . ' GMT'; 
   $etag = sprintf('w/"%s:%s"', md5($lastModified), $this->fileSize); 
   $ranges = $this->getRange(); 
   // headers 
   header(sprintf('Last-Modified: %s', $lastModified)); 
   header(sprintf('ETag: %s', $etag)); 
   header(sprintf('Content-Type: %s', $this->mimeType)); 
   $disposition = 'attachment'; 
   if (strpos($this->mimeType, 'image/') !== FALSE) { 
    $disposition = 'inline'; 
   } 
   header(sprintf('Content-Disposition: %s; filename="%s"', $disposition, basename($this->filePath))); 
   if ($ranges != null) { 
    if ($this->isLog) { 
     $this->log(json_encode($ranges) . ' ' . $_SERVER['HTTP_RANGE']); 
    } 
    header('HTTP/1.1 206 Partial Content'); 
    header('Accept-Ranges: bytes'); 
    header(sprintf('Content-Length: %u', $ranges['end'] - $ranges['start'])); 
    header(sprintf('Content-Range: bytes %s-%s/%s', $ranges['start'], $ranges['end'], $this->fileSize)); 
    // 
    fseek($fileHande, sprintf('%u', $ranges['start'])); 
   } else { 
    header("HTTP/1.1 200 OK"); 
    header(sprintf('Content-Length: %s', $this->fileSize)); 
   } 
   // read file 
   $lastSize = 0; 
   while (!feof($fileHande)  !connection_aborted()) { 
    $lastSize = sprintf("%u", bcsub($this->fileSize, sprintf("%u", ftell($fileHande)))); 
    if (bccomp($lastSize, self::BUFF_SIZE) > 0) { 
     $lastSize = self::BUFF_SIZE; 
    } 
    echo fread($fileHande, $lastSize); 
    ob_flush(); 
    flush(); 
   } 
   set_magic_quotes_runtime($magicQuotes); 
   ob_end_flush(); 
  } 
  if ($fileHande != null) { 
   fclose($fileHande); 
  } 
 } 
 /** 
  * 設(shè)置記錄 
  * @param Boolean> $isLog 是否記錄 
  */ 
 public function setIsLog($isLog = true) { 
  $this->isLog = $isLog; 
 } 
 /** 
  * 記錄 
  * @param String> $msg 記錄信息 
  */ 
 private function log($msg) { 
  try { 
   $handle = fopen('transfer_log.txt', 'a'); 
   fwrite($handle, sprintf('%s : %s' . PHP_EOL, date('Y-m-d H:i:s'), $msg)); 
   fclose($handle); 
  } catch (Exception $e) { 
   // null; 
  } 
 } 
}

總結(jié)

以上所述是小編給大家介紹的php實(shí)現(xiàn)大文件斷點(diǎn)續(xù)傳下載實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的!

您可能感興趣的文章:
  • PHP實(shí)現(xiàn)文件下載斷點(diǎn)續(xù)傳詳解
  • php實(shí)現(xiàn)的支持?jǐn)帱c(diǎn)續(xù)傳的文件下載類
  • 關(guān)于php支持分塊與斷點(diǎn)續(xù)傳文件下載功能代碼
  • 解決PHP超大文件下載,斷點(diǎn)續(xù)傳下載的方法詳解
  • php下載遠(yuǎn)程文件類(支持?jǐn)帱c(diǎn)續(xù)傳)
  • PHP大文件及斷點(diǎn)續(xù)傳下載實(shí)現(xiàn)代碼

標(biāo)簽:鷹潭 山南 迪慶 濟(jì)寧 三亞 南寧 烏魯木齊 赤峰

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php實(shí)現(xiàn)大文件斷點(diǎn)續(xù)傳下載實(shí)例代碼》,本文關(guān)鍵詞  php,實(shí)現(xiàn),大,文件,斷點(diǎn),續(xù)傳,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《php實(shí)現(xiàn)大文件斷點(diǎn)續(xù)傳下載實(shí)例代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于php實(shí)現(xiàn)大文件斷點(diǎn)續(xù)傳下載實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章