1.fopen 実装コード:
コードをコピーします コードは次のとおりです:
$handle = fopen ("http://www.example.com/", "rb" );
$contents = "";
while (!feof($handle)) {
$contents .= fread($handle)
;
コードは次のとおりです: // PHP 5 以降の場合
$handle = fopen("http://www.example.com/", "rb") ;
$contents = stream_get_contents($handle);
2.curl 実装コード:
コードは次のとおりです。 ?php
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); ($ch); return $contents } $pageURL="http://www.baidu.com"
コードをコピーします
コードは次のとおりです:
$html = file_get_contents("http://s.jb51.net");
$html = iconv( "Big5", "UTF-8//IGNORE" , $html); /エンコーディングを UTF8 に変換します
print $html;
$h = file("http://s.jb51.net")
foreach($htm as $value)
$h; .= iconv( "GB2312", "utf -8//IGNORE" , $value);
}
print_r($h);
コードをコピーします
$ opts = array( 'http'=>array( 'method'=>"GET", 'header'=>"Accept- language: enrn " .
"Cookie: foo=barrn")
);
$context = stream_context_create($opts);
/* 上記の追加ヘッダーを使用して http リクエストを www.example.com に送信します */
$fp = fopen('http://www.baidu.com' , 'r', $context)
fclose($fp);
上記では、fop PHP が Web ページのファイルの内容を読み取るための fopen、curl などの実装コードを紹介しました。PHP チュートリアルに興味のある友人の参考になれば幸いです。