>백엔드 개발 >PHP 튜토리얼 >중단점 이력서 전송을 지원하는 파일 다운로드 PHP 클래스 구현

중단점 이력서 전송을 지원하는 파일 다운로드 PHP 클래스 구현

WBOY
WBOY원래의
2016-07-25 08:42:491863검색
중단점, PHP에서 업로드 재개

이 기사의 예에서는 중단점 이력서 다운로드를 지원하는 PHP로 구현된 파일 다운로드 클래스와 그 사용법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 방법은 다음과 같습니다.

일반적으로 PHP는 주로 HTTP 프로토콜의 HTTP_RANGE 헤더에 의존하여 중단점 재개를 지원합니다.

HTTP 중단점 재개 원칙:

Http 헤더 Range, Content-Range()
HTTP 헤더에서 Range 및 Content-Range 엔터티 헤더는 일반적으로 중단점 다운로드에 사용됩니다.
Range 사용자 요청 헤더에서 첫 번째 바이트 위치를 지정합니다. (Range: 200-300)
Content-Range는 응답 헤더에 사용됩니다

전체 파일 다운로드 요청:

GET /test.rar HTTP/1.1
연결: close
호스트: 116.1.219.219
범위: bytes=0-801 //전체 파일을 다운로드하기 위한 일반 요청은 bytes=0- 또는 이 헤드를 사용하지 마세요

일반 응답:

HTTP/1.1 200 OK
Content-Length: 801
Content-Type: application/octet-stream
Content-Range: 바이트 0-800/801 //801: 총 파일 크기

FileDownload.class.php 클래스 파일 코드는 다음과 같습니다.

  1. /**
  2. * 다운로드 클래스, 중단점 이력서 다운로드 지원
  3. * @time: 2015 06 30 09:36
  4. * @author:guoyu@xzdkiosk.com
  5. * PHP 다운로드 클래스, 중단점 이력서 다운로드 지원
  6. * Func:
  7. * download: 파일 다운로드
  8. * setSpeed: 다운로드 속도 설정
  9. * getRange: 헤더의 범위 가져오기
  10. */
  11. class FileDownload{ // 클래스 시작
  12. private $_speed = 512; // 다운로드 속도
  13. /**Download
  14. * @param String $file 다운로드할 파일 경로
  15. * @param String $name 파일명, 비어 있으면 다운로드한 파일명과 동일
  16. * @param boolean $reload 중단점 연속 통과 활성화 여부
  17. */
  18. public 함수 download($file, $name =' ', $reload=false){
  19. if(file_exists($file)){
  20. if($name==''){
  21. $name = basename($file)
  22. }
  23. $fp = fopen($file, 'rb')
  24. $file_size = filesize($file)
  25. $ranges = $this->getRange($file_size); 🎜>
  26. header('cache-control:public');
  27. header('content-type:application/octet-stream')
  28. header('content-disposition:attachment; filename='. $name );
  29. if($reload && $ranges!=null){ // 재개
  30. 헤더('HTTP/1.1 206 부분 콘텐츠')
  31. header('Accept-Ranges : bytes');
  32. // 남은 길이
  33. header(sprintf('content-length:%u',$ranges['end']-$ranges['start']))
  34. // 범위 정보
  35. header(sprintf('content-range:bytes %s-%s/%s', $ranges['start'], $ranges['end'], $file_size ) ); // fp 포인터가 중단점 위치로 점프합니다.
  36. fseek($fp, sprintf('%u', $ranges['start']))
  37. }else{
  38. header('HTTP/1.1 200 OK');
  39. header('content-length:'.$file_size)
  40. }
  41. while(!feof($fp)){
  42. echo fread($fp, round($this->_speed*1024,0));
  43. ob_flush()
  44. //sleep(1) // 테스트용으로 사용, 다운로드 속도 저하 속도
  45. }
  46. ($fp!=null) && fclose($fp)
  47. }else{
  48. return ''; 🎜>
  49. /**다운로드 속도 설정
  50. * @param int $speed
  51. */
  52. 공개 함수 setSpeed($speed){
  53. if(is_numeric($speed) && $speed>16 && $speed<4096){
  54. $ this- >_speed = $speed;
  55. }
  56. }
  57. /**헤더 범위 정보 가져오기
  58. * @param int $file_size 파일 크기
  59. * @return Array
  60. */
  61. 비공개 함수 getRange($file_size){
  62. if(isset($ _SERVER[ 'HTTP_RANGE']) && !empty($_SERVER['HTTP_RANGE'])){
  63. $range = $_SERVER['HTTP_RANGE']
  64. $range = preg_replace('/[s|,] .* /', '', $range)
  65. $range =explosion('-', substr($range, 6))
  66. if(count($range)<2){
  67. $ range[1] = $file_size;
  68. }
  69. $range = array_combine(array('start','end'), $range)
  70. if(empty($range['start') ]) ){
  71. $range['start'] = 0;
  72. }
  73. if(empty($range['end'])){
  74. $range['end'] = $ file_size;
  75. }
  76. return $range;
  77. }
  78. return null
  79. }
  80. } // 클래스 종료
  81. 코드 복사

데모 코드는 다음과 같습니다.
  1. require('FileDownload.class.php')
  2. $file = 'book.zip ';
  3. $name = time().'.zip'; $obj = new FileDownload()
  4. $flag = $obj->download($file, $name); > / /$flag = $obj->download($file, $name, true); // 중단점 재개
  5. if(!$flag){
  6. echo '파일이 없습니다'; 🎜> }
  7. ?>
  8. 코드 복사
재개 가능한 다운로드 테스트 방법:

linux wget 명령을 사용하여 다운로드를 테스트합니다. wget -c -O 파일 http://xxx

1. 먼저 중단점 재개를 끄세요

$flag = $obj->download($file, $name)
  1. 코드 복사

test@ubuntu:~/Downloads$ wget -O test.rar http://demo.test.com/demo.php
--2013-06 -30 16:52:44-- http://demo.test.com/demo.php
    호스트 데모.test.com 확인 중... 127.0.0.1
  1. 데모.test.com에 연결 중| .0.1|:80... 연결되었습니다.
  2. HTTP 요청 전송됨, 응답 대기 중... 200 OK
  3. 길이: 10445120(10.0M) [application/octet-stream]
  4. 저장 위치: “test.rar”
  5. 30 % [==========================> ] 3,146,580 513K/s 예상 시간 14초
  6. ^C
  7. test@ubuntu :~/Downloads$ wget -c -O test.rar http://demo.test.com/demo.php
  8. --2013-06-30 16:52:57-- http://demone.test .com/demo.php
  9. 호스트 데모.test.com 확인 중... 127.0.0.1
  10. 연결 중 데모.test.com|127.0.0.1|:80... 연결되었습니다.
  11. HTTP 요청이 전송되었으며 응답을 기다리는 중... 200 OK
  12. 길이: 10445120(10.0M) [application/octet-stream]
  13. 저장 위치: “test.rar”
  14. 30% [= ==========================> ] 3,146,580 515K/s 예상 시간 14초
  15. ^C
  16. 코드 복사
wget -c가 업로드를 재개할 수 없음을 알 수 있습니다

2. 중단점 재개 활성화

$flag = $obj->download($file, $name, true)
  1. 코드 복사

test@ubuntu:~/Downloads$ wget -O test.rar http://demo.test.com/demo.php
--2013-06 -30 16:53:19-- http://demo.test.com/demo.php
    호스트 데모.test.com 확인 중... 127.0.0.1
  1. 데모.test.com에 연결 중| .0.1|:80... 연결되었습니다.
  2. HTTP 요청 전송됨, 응답 대기 중... 200 OK
  3. 길이: 10445120(10.0M) [application/octet-stream]
  4. 저장 위치: “test.rar”
  5. 20 % [==================> ] 2,097,720 516K/s 예상 시간 16초
  6. ^C
  7. test@ubuntu:~/Downloads$ wget - c -O test.rar http://demo.test.com/demo.php
  8. --2013-06-30 16:53:31-- http://demo.test.com/demo.php
  9. 해결 중 호스트 데모.test.com... 127.0.0.1
  10. 연결 중 데모.test.com|127.0.0.1|:80... 연결되었습니다.
  11. HTTP 요청 전송됨, 응답 대기 중... 206 부분 콘텐츠
  12. 길이: 10445121(10.0M), 7822971(7.5M) 남은 바이트 [application/octet-stream]
  13. 저장 위치: "test. rar"
  14. 100%[ =================================== === ======================================] 10,445,121 543K/s 14s
  15. 2013-06-30 16:53:45 (543 KB/s) - "test.rar" 저장됨 [10445121/10445121])
  16. 코드 복사
중단점 위치( )부터 다운로드가 시작되는 것을 확인할 수 있습니다.
출처: http://blog.csdn.net/phpfenghuo/article/details/46691865



성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.