リモート コンテンツを開くオプションがサポートされている場合、PHP は実際に fopen または file_get_contents を使用して Web ページのコンテンツを取得できます。ただし、デフォルトの関数には HTTP ヘッダーを取得できないという欠点があり、一部の特殊なアプリケーションでは非常に不便です。たとえば、次のリンクがあります:
http://www.abc.com/showvd.asp?id=18
画像が返される場合、デフォルトの関数を使用して識別することは困難ですが、さらに、相手がホットリンクを防ぐために参照を使用している場合、HTTP クラスを使用すると、これらの問題を完全に解決でき、速度もほぼ同じになります。
使用法:
$hd = new DedeHttpDown();
$hd->OpenUrl("http://www.dedecms.com");
echo $hd->GetHtml();ファイルとして保存する場合は、 $hd->SaveBin("dede.html"); を使用します。
$hd->Close();
http リクエスト ヘッダーを取得するには、
$hd->GetHead(" key")
リクエストヘッダーの設定
$hd->SetHead(key,value); (OpenUrlを呼び出す前に設定する必要があります)
コードは次のとおりです:
/* ----- ------ -------------------------------------------- ------ --------
//Dream Weaving HTTP ダウンロード クラス V1.0
//From: Dream Weaving Journey http://www.dedecms.com
//Author: IT Plato
//時間: 2005-11-13 12:39
//声明: Laggard Web サイトで最初に公開されました。再版する場合は著作権情報を保持してください
----------------- -------- -------------------------------------- ----- *dedehttpdown {$ m_url port = "80";
var $m_puthead = "";
var $BaseUrlPath = "";
var $HomeUrl = "";
var $JumpCount = 0;//複数のリダイレクトが無限ループに陥るのを防ぎます
/
$urls = "" ; this->m_url = $url;
if(!emp ty($urls["スキーム"]) ) $this->m_scheme = $urls["スキーム"];
$this->m_user = $ URL["ユーザー"];
if(!empty($urls["pass"])){
$this->m_pass = $urls["pass"];
}
if(!empty($urls["port"])){ $this->m_port = $urls["ポート"];
}
if(!empty($urls["path"])) $this->m_path = $urls["path"];
$this->m_urlpath = $this->m_path;
if(!empty($urls["query"])){
$this->m_query = $urls["query"];
$this->m_urlpath .= "?".$this->m_query;
}
$this->HomeUrl = $urls["host"];
$this->BaseUrlPath = $this->HomeUrl.$urls["path"];
$this->BaseUrlPath = ereg_replace("/([^/]*).(.*)$","/",$this->BaseUrlPath);
$this->BaseUrlPath = ereg_replace("/$","",$this->BaseUrlPath);
}
}
//
// 打开指定网址
//
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->JumpCount = 0;
$this->m_httphead = Array() ;
//$this->m_puthead = "";
$this->m_html = "";
$this->Close();
//初化系统
$this->PrivateInit($url);
$this->PrivateStartSession();
}
//
//打开303重定向网址
//
function JumpOpenUrl($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->JumpCount++;
$this->m_httphead = Array() ;
$this->m_html = "";
$this->Close();
//初化系统
$this->PrivateInit($url);
$this->PrivateStartSession();
}
//
//获特定の操作错误の原因
//
function printError()
{ echo "错误信息:".$this->m_error;
echo "特定の返头:
";
foreach($this->m_httphead as $k=>$v)
{ echo "$k =>gt; $v
rn"; }
}
//
//判别用Getメソッド送信的头的应答结果否正确
//
function IsGetOK()
{
if( ereg("^2",$this->GetHead("http -state")) )
{ trueを返します。 }「http-describe」< br> "; //返されたWebページが特定のタイプであるかどうかを決定します
)
)
= "誤ったタイプ" ("コンテンツ タイプ")。 If(!$this->IsGetOK()) return false;
->m_fp)) { $this->m_error = "接続が閉じられました。"; return false; }
write($fp,fread($this->m_fp, 1024))
本当です。 {
if ($ this-& gt; istext ()) $ this- & gt; savebinfile ($ savefilename); コンテンツ
t;m_html!="") return $this->m_html;
if (! $ this-& gt; m_fp || @feof ($ this-& gt; m_fp ))return ";
while(!feof($ this-> m_fp)){
$ this-> m_html。= fgets($ this-> m_fp、256);
戻るH if ($ this-& gt; gethead ("http-edition") == "http/1.1") $ httpv = "http/1.1"
else $ httpv = "http/1.0"; // 送信初期リクエスト ヘッダーの GET とホスト情報を修正しました
fputs($this->m_fp,"GET ".$this->m_urlpath." $httpvrn"); ️ 「*/*」 ; }
if(!isset($this->m_puthead["User-Agent"])) { $this->m_puthead["User-Agent"] = "Mozilla/4.0 (互換性、MSIE 6.0、Windows NT) 5.2)"; }
if(!isset($this->m_puthead["参照"])) { $this->m_puthead["参照"] = "http://".$ this->m_puthead ["ホスト"]; }
If ($k! = "" "&& $ v! =" ") {
fputs ($ this- & gt; m_fp," $ k: $ vRN "); リクエストヘッダー
使用する feof を使用する
接続: Closernrn");
else fputs($this->m_fp,"rn");
gets($this->m_fp,256 )) ;
$this->m_httphead["http-edition"] = トリム($httpstas[0]) ;
$this->m_httphead["http-describe"] = ""; ->m_httphead[" http -describe"] .= " ".trim($httpstas[$i]);
}
//获取详细应答头
while(!feof($this->m_fp))
$line = trim($これ->m_fp,256));
if($line == "") break;
$hkey = "";
$hvalue = "";
$v = 0;
for($i=0;$i
if($line[$i]==":") $v = 1;
if($v==0) $hkey .= $line[$i];
$hkey = trim($hkey);
if($hkey!="") $this->m_httphead[strto lower($hkey)] = trim($hvalue);
}
//判断は3xx开头的应答
if(ereg("^3",$this->m_httphead["http-state"]))
{
if($this->JumpCount > 3) 戻る。
if(isset($this->m_httphead["場所"])){
$newurl = $this->m_httphead["場所"];
if(eregi("^http",$newurl)){
$this->JumpOpenUrl($newurl);
}
else
答え!";} - > m_httphead [$ headname])
$ skey、$ svalue)
- - //
(){
//
//补全相对网址
//
function FillUrl($surl)
{
$i = 0;
$dstr = "";
$pstr = "";
$okurl = "";
$pathStep = 0;
$surl = トリム($surl);
if($surl=="") return "";
$pos = strpos($surl,"#");
if($pos>0) $surl = substr($surl,0,$pos);
if($surl[0]=="/"){
$okurl = "http://".$this->HomeUrl."/".$surl;
}
else if($surl[0]==".")
{
if(strlen($surl)<=2) return "";
else if($surl[0]=="/")
{
$okurl = "http://".$this->BaseUrlPath."/".substr($surl,2,strlen($surl) )-2);
}
else{
$urls = explode("/",$surl);
foreach($urls as $u){
if($u=="..") $pathStep++;
else if($i
$i++;
}
$urls = explode("/",$this->BaseUrlPath);
if(count($urls) <= $pathStep)
return "";
else{
$pstr = "http://";
for($i=0;$i
$okurl = $pstr.$dstr;
}
}
else
{
if(strlen($surl)<7)
$okurl = "http://".$this->BaseUrlPath."/" .$surl;
else if(strto lower(substr($surl,0,7))=="http://")
$okurl = $surl;
else
$okurl = "http://".$this->BaseUrlPath."/".$surl;
}
$okurl = eregi_replace("^(http://)","",$okurl);
$okurl = eregi_replace("/{1,}","/",$okurl);
return "http://".$okurl;
}
}
?>