支援斷點續傳的PHP 下載遠端檔案類

WBOY
發布: 2016-07-25 08:44:21
原創
855 人瀏覽過

PHP 다운로드 원격 파일 클래스, 중단점 재개 다운로드 지원, 코드에는 특정 호출 지침이 포함되어 있습니다. 프로그램은 주로 HTTP 프로토콜을 사용하여 파일을 다운로드합니다. HTTP1.1 프로토콜은 문서가 끝난 후 링크를 ​​닫아야 함을 지정해야 합니다. 그렇지 않으면 문서를 읽을 때 feof를 사용하여 끝을 판단할 수 없습니다. 자세한 내용은 소스 코드를 다운로드하여 확인하세요.

  1. /**
  2. * 下載遠端檔案類別支援斷點續傳
  3. */
  4. class HttpDownload {
  5. private $m_url = "";
  6. private $m_path = "";
  7. private $m_path = " ";
  8. 私人$m_scheme = "http";
  9. 私人$m_host = "";
  10. 私人$m_port = "80";
  11. 私人$m_user = "";
  12. 私人$ m_pass = "";
  13. 私人$m_path = "/";
  14. 私人$m_query = "";
  15. 私人$m_fp = "";
  16. 私人$m_error = "";
  17. 私人 $ m_httphead = "" ;
  18. private $m_html = "";
  19. /**
  20. * 初始化
  21. */
  22. public function PrivateInit($url){
  23. $urls = "";
  24. $urls = @parse_url($url);
  25. $this->m_url = $url;
  26. if(is_array($urls)) {
  27. $this->m_host = $urls ["主機"];
  28. if(!empty($urls["scheme"])) $this->m_scheme = $urls["scheme"];
  29. if(!empty($urls[") user" ])) $this->m_user = $urls["用戶"];
  30. if(!empty($urls["pass"])) $this->m_pass = $urls["pass" ];
  31. if(!empty($urls["port"])) $this->m_port = $urls["port"];
  32. if(!empty($urls["path"]) ) $this-> m_path = $urls["path"];
  33. $this->m_urlpath = $this->m_path;
  34. if(!empty($urls["query"])) {
  35. $this-> m_query = $urls["query"];
  36. $this->m_urlpath .= "?".$this->m_query;
  37. }
  38. }
  39. }
  40. /* *
  41. * 開啟指定網址
  42. */
  43. function OpenUrl($url) {
  44. #重設各參數
  45. $this->m_url = "";
  46. $this->m_urlpath = "";
  47. $this->m_scheme = "http";
  48. $this->m_host = "";
  49. $this->m_port = "80 ";
  50. $this->m_user = "";
  51. $this->m_pass = "";
  52. $this->m_path = "/";
  53. $this->; m_query = "";
  54. $this->m_error = "";
  55. $this->m_httphead = "" ;
  56. $this->m_html = "";
  57. $this->Close( );
  58. # 初始化系統
  59. $this->PrivateInit($url);
  60. $this->PrivateStartSession();
  61. }
  62. /* *
  63. * 取得某操作錯誤的原因
  64. */
  65. public function printError() {
  66. echo "錯誤訊息:".$this->m_error;
  67. echo "具體回傳頭:
    ";
  68. foreach($this->m_httphead as $k=>$v) {
  69. echo "$k =>; $v
    rn";
  70. }
  71. }
  72. /**
  73. * 判別用Get方法發送的頭的應答結果是否正確
  74. */
  75. public function IsGetOK() {
  76. if( ereg("^2 ",$this->GetHead(" http-state")) ) {
  77. 回傳true;
  78. } else {
  79. $this->m_error .= $this->GetHead("http -狀態」)。 ";
  80. return false;
  81. }
  82. }
  83. /**
  84. * 看看回傳的網頁是否為text類型
  85. */
  86. public function IsText() {
  87. if (ereg("^2" ) ,$this->GetHead("http-state")) && eregi("^text",$this->; GetHead("content-type"))) {
  88. return true
  89. } else {
  90. $this->m_error .= "內容為非文字型別
    ";
  91. return; false;
  92. }
  93. }
  94. /**
  95. * 判斷傳回的網頁是否為特定的類型
  96. */
  97. public function IsContentType($ctype) {
  98. if (ereg("^2",$this->GetHead) ("http-state")) && $this->GetHead("content-type") == strtolower ( $ctype)) {
  99. return true
  100. } else {
  101. $this-> ;m_error .= "型別錯誤".$this->GetHead("content-type")."
    " ;
  102. return false;
  103. }
  104. }
  105. /**
  106. * 用 HTTP 協定下載檔案
  107. */
  108. public function SaveToBin($savefilename) {
  109. if (!$this- > IsGetOK()) return false;
  110. if (@feof($this->IsGetOK()) return false;
  111. if (@feof($this->IsGetOK()) m_fp)) {
  112. $ this->m_error = "連線已經關閉!";
  113. 回傳 false; } $fp = fopen($savefilename,"w") 或 die("寫入檔案 $savefilename 失敗!");
  114. while (!feof($this->m_fp)) {
  115. @fwrite($fp,fgets($this->m_fp,256));
  116. }
  117. @ fclose($this->m_fp);
  118. return true;
  119. }
  120. /**
  121. * 웹페이지 내용을 텍스트 파일로 저장
  122. */
  123. 공용 함수 SaveToText($savefilename) {
  124. if ( $this->IsText()) {
  125. $this->SaveBinFile($savefilename);
  126. } else {
  127. return "";
  128. }
  129. }
  130. /**
  131. * HTTP 프로토콜을 사용하여 웹페이지 콘텐츠 가져오기
  132. */
  133. 공용 함수 GetHtml() {
  134. if (!$this->IsText()) return "";
  135. if ($this->m_html!= "") return $this->m_html;
  136. if (!$this->m_fp||@feof($this->m_fp)) return "";
  137. while(!feof($this ->m_fp)) {
  138. $this->m_html .= fgets($this->m_fp,256);
  139. }
  140. @fclose($this->m_fp);
  141. return $this->m_html;
  142. }
  143. /**
  144. * HTTP 세션 시작
  145. */
  146. public function PrivateStartSession() {
  147. if (!$this->PrivateOpenHost() ) {
  148. $this->m_error .= "打开远程主机出错!";
  149. return false;
  150. }
  151. if ($this->GetHead("http-edition")= ="HTTP/1.1") {
  152. $httpv = "HTTP/1.1";
  153. } else {
  154. $httpv = "HTTP/1.0";
  155. }
  156. fputs($this- >m_fp,"GET ".$this->m_urlpath." $httpvrn");
  157. fputs($this->m_fp,"Host: ".$this->m_host."rn");
  158. fputs($this->m_fp,"Accept: */*rn");
  159. fputs($this->m_fp,"User-Agent: Mozilla/4.0(호환 가능; MSIE 6.0; Windows NT 5.2)rn");
  160. #HTTP1.1协议必须指定文档结束后关闭链接,否则读取文档时无법使用feof判断结束
  161. if ($httpv=="HTTP/1 .1") {
  162. fputs($this->m_fp,"연결: Closernrn");
  163. } else {
  164. fputs($this->m_fp,"rn");
  165. }
  166. $ httpstas = fgets($this->m_fp,256);
  167. $httpstas = 분할(" ",$httpstas);
  168. $this->m_httphead["http-edition"] = Trim($httpstas [0]);
  169. $this->m_httphead["http-state"] = Trim($httpstas[1]);
  170. $this->m_httphead["http-describe"] = "" ;
  171. for ($i=2;$i $this->m_httphead["http-describe"] .= " ".trim($httpstas[ $i]);
  172. }
  173. while (!feof($this->m_fp)) {
  174. $line = str_replace(""","",trim(fgets($this-> m_fp,256)));
  175. if($line == "") break;
  176. if (ereg(":",$line)) {
  177. $lines = Split(":",$ line);
  178. $this->m_httphead[strtolower(trim($lines[0]))] = Trim($lines[1]);
  179. }
  180. }
  181. }
  182. /**
  183. * HTTP 헤더 값 가져오기
  184. */
  185. 공개 함수 GetHead($headname) {
  186. $headname = strtolower($headname);
  187. if (isset($this->m_httphead[$headname) ])) {
  188. return $this->m_httphead[$headname];
  189. } else {
  190. return "";
  191. }
  192. }
  193. /**
  194. * 연결 열기
  195. */
  196. 공용 함수 PrivateOpenHost() {
  197. if ($this->m_host=="") return false;
  198. $this->m_fp = @fsockopen($this-> m_host, $this->m_port, &$errno, &$errstr,10);
  199. if (!$this->m_fp){
  200. $this->m_error = $errstr;
  201. return false;
  202. } else {
  203. return true;
  204. }
  205. }
  206. /**
  207. * 연결 끊기
  208. */
  209. 공용 함수 Close(){
  210. @ fclose($this->m_fp);
  211. }
  212. }
  213. #两种使사용방법,分别如下:
  214. #打开网页
  215. $httpdown = new HttpDownload ();
  216. $httpdown->OpenUrl("http://www.google.com.hk");
  217. echo $httpdown->GetHtml();
  218. $httpdown->닫기 ();
  219. #下载文件
  220. $file = new HttpDownload(); # 实例化类
  221. $file->OpenUrl("http://www.ti.com.cn/cn/lit/an/rust020/rust020.pdf"); # 远程文件地址
  222. $file->SaveToBin("rust020.pdf"); # 保存路径及文件name
  223. $file->Close(); # 释放资源
  224. ?>
复代码

PHP


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板