PHP ダウンロード リモート ファイル クラスは、ブレークポイントの再開ダウンロードをサポートしており、コードには特定の呼び出し命令が含まれています。このプログラムは主に HTTP プロトコルを使用してファイルをダウンロードします。HTTP1.1 プロトコルでは、文書の終了後にリンクを閉じるように指定する必要があります。そうしないと、文書の読み取り時に feof を使用して終了を判断できません。詳細については、ソース コードをダウンロードして参照してください。
- /**
- * リモート ファイルのダウンロードはブレークポイントの再開をサポートします
- */
- class HttpDownload {
- private $m_url = "";
- private $m_urlpath = "";
- private $m_scheme = "http";
- private $m_host = "";
- プライベート $m_port = "80";
- プライベート $m_user = "";
- プライベート $m_pass = "";
- プライベート $m_path = "/";
- プライベート $m_query = "";
- プライベート $m_fp = "";
- private $m_error = "";
- private $m_httphead = "" ;
- private $m_html = "";
- /**
- * 初期化
- */
- public function PrivateInit($url){
- $urls = "";
- $urls = @parse_url($url);
- $this->m_url = $url;
- if(is_array($urls)) {
- $this->m_host = $urls["host" ];
- if(!empty($urls["scheme"])) $this->m_scheme = $urls["scheme"];
- if(!empty($urls["user"])) $this- >m_user = $urls["user"];
- if(!empty($urls["pass"])) $this->m_pass = $urls["pass"];
- if(!empty($urls ["ポート"])) $this->m_port = $urls["ポート"];
- if(!empty($urls["パス"])) $this->m_path = $urls["パス" ];
- $this->m_urlpath = $this->m_path;
- if(!empty($urls["query"])) {
- $this->m_query = $urls["query"];
- $this->m_urlpath .= "?".$this->m_query;
- }
- }
- }
-
- /**
- ※指定のURLを開きます
- */
- function OpenUrl($url) {
- #重设各パラメータ
- $this->m_url = "";
- $this->m_urlpath = "";
- $this->m_scheme = "http";
- $this->m_host = "";
- $this-> m_port = "80";
- $this->m_user = "";
- $this->m_pass = "";
- $this->m_path = "/";
- $this->m_query = "" ;
- $this->m_error = "";
- $this->m_httphead = "" ;
- $this->m_html = "";
- $this->Close();
- #初開始化系统
- $ this->PrivateInit($url);
- $this->PrivateStartSession();
- }
-
- /**
- * 操作エラーの理由を取得します
- */
- public function printError() {
- echo "错误情報:".$this- >m_error;
- echo "特定の返头:
"; - foreach($this->m_httphead as $k=>$v) {
- echo "$k =>; $v
rn";
- }
- }
-
- /**
- * Getメソッドで送信したヘッダーの応答結果が正しいか判定します
- */
- public function IsGetOK() {
- if( ereg("^2",$this->GetHead("http- state")) ) {
- return true;
- } else {
- $this->m_error .= $this->GetHead("http-state")." - ".$this->GetHead("http-describe")."
"; - return false;
- }
- }
- /**
- * 返されたWebページがテキストタイプかどうかを確認してください
- */
- public function IsText() {
- if (ereg("^2",$this->GetHead("http-state")) && eregi("^text",$this->GetHead("content-type"))) {
- return true ;
- } else {
- $this->m_error .= "コンテンツは非文本型
";
- return false;
- }
- }
- /**
- * 返された Web ページが特定のタイプであるかどうかを判断します
- */
- public function IsContentType($ctype ) {
- if (ereg("^2",$this->GetHead("http-state")) && $this->GetHead("content-type") == strto lower($ctype)) {
- return true;
- } else {
- $this->m_error .= "类型不对 ".$this->GetHead("content-type")."
"; - return false;
- }
- }
- /**
- * HTTPプロトコルを使用してファイルをダウンロードします
- */
- public function SaveToBin($savefilename) {
- if (!$this->IsGetOK()) return false;
- if (@feof($this->m_fp)) {
- $this->m_error = "连接已经关闭!";
- return false
- }
- $fp = fopen($savefilename,"w") or die("写入文件 $savefilename 失败!");
- while (!feof($this->m_fp)) {
- @fwrite($fp,fgets($this->m_fp,256));
- }
- @fclose($this->m_fp );
- return true;
- }
-
- /**
- * Web コンテンツをテキスト ファイルとして保存します
- */
- public function SaveToText($savefilename) {
- if ($this->IsText()) {
- $this->SaveBinFile($savefilename) );
- } else {
- return "";
- }
- }
-
- /**
- * HTTP プロトコルを使用して Web ページのコンテンツを取得します
- */
- public function GetHtml() {
- if (!$this->IsText()) return "";
- if ($this->m_html!="") return $this->m_html;
- if (!$this->m_fp||@feof($this->m_fp)) return "";
- while (!feof($this->m_fp)) {
- $this->m_html .= fgets($this->m_fp,256);
- }
- @fclose($this->m_fp);
- return $this->m_html;
- }
-
- /**
- * HTTPセッションを開始します
- */
- public function PrivateStartSession() {
- if (!$this->gt;PrivateOpenHost()) {
- $this->m_error .= "打开远程主机出错!";
- return false;
- }
- if ($this->GetHead("http-edition")=="HTTP/1.1") {
- $httpv = "HTTP/1.1";
- } else {
- $httpv = "HTTP/1.0";
- }
- fputs($this->m_fp,"GET ".$this->m_urlpath." $httpvrn");
- fputs($this->m_fp ,"ホスト: ".$this->m_host."rn");
- fputs($this->m_fp,"Accept: */*rn");
- fputs($this->m_fp,"ユーザー-エージェント: Mozilla/4.0+(互換;+MSIE+6.0;+Windows+NT+5.2)rn");
- #HTTP1.1协议必须指定文档结束後关闭链接,否则读取文档時無法使用feof判断结束
- if ($httpv=="HTTP/1.1") {
- fputs($this->m_fp,"接続: Closernrn");
- } else {
- fputs($this->m_fp,"rn");
- }
- $httpstas = fgets($this->m_fp,256);
- $httpstas = split(" ",$httpstas);
- $this->m_httphead["http-edition"] = トリム($httpstas [0]);
- $this->m_httphead["http-state"] = トリム($httpstas[1]);
- $this->m_httphead["http-describe"] = "";
- for ( $i=2;$i $this->m_httphead["http-describe"] .= " ".trim($httpstas[$i]);
- }
- while (!feof($this->m_fp)) {
- $line = str_replace(""","",trim(fgets($this->m_fp,256)));
- if($line == "") Break;
- if (ereg(":",$line)) {
- $lines = split(":",$line);
- $this->m_httphead[strto lower(trim($lines[0] ))] = トリム($lines[1]);
- }
- }
- }
-
- /**
- * HTTPヘッダーの値を取得します
- */
- public function GetHead($headname) {
- $headname = strto lower($headname);
- if (isset($this->m_httphead[$headname])) {
- return $this->m_httphead[$headname];
- } else {
- return "";
- }
- }
-
- /**
- * オープン接続
- */
- public function PrivateOpenHost() {
- if ($this->m_host=="") return false;
- $this->m_fp = @fsockopen($this->m_host, $this->m_port , &$errno, &$errstr,10);
- if (!$this->m_fp){
- $this->m_error = $errstr;
- return false;
- } else {
- return true;
- }
- }
-
- /**
- *密接なつながり
- */
- public function Close(){
- @fclose($this->m_fp);
- }
- }
-
- #两种使用方法,分别如下:
-
- #打开网页
- $httpdown = new HttpDownload();
- $httpdown->OpenUrl("http://www.google.com.hk");
- echo $httpdown->GetHtml();
- $httpdown->Close ();
-
- #ダウンロード文件
- $file = new HttpDownload(); # 实例化类
- $file->OpenUrl("http://www.ti.com.cn/cn/lit/an/rust020/rust020.pdf"); # 远程文件地址
- $file->SaveToBin("rust020.pdf"); # 保存路径及び文件名
- $file->Close(); #释放资源
- ?>
复制代
|