PHP でリモート ファイルを読み取るためのいくつかの方法の概要と相違点の分析。
<p><?php</p>$url = 'http://www.xxx.com/';<br />$contents = file_get_contents($url);<br />//如果出现中文乱码使用下面代码<br />//$getcontent = iconv(“gb2312″, “utf-8″,file_get_contents($url));<br />//echo $getcontent;<br />echo $contents;<br />?>
<p><?php</p>$url = “http://www.xxx.com/”;<br />$ch = curl_init();<br />$timeout = 5;<br />curl_setopt($ch, CURLOPT_URL, $url);<br />curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);//在需要用户检测的网页里需要增加下面两行<br />//curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);<br />//curl_setopt($ch, CURLOPT_USERPWD, US_NAME.”:”.US_PWD);<br />$contents = curl_exec($ch);<br />curl_close($ch);<br />echo $contents;<br /><p>?>
<p><?php</p>$handle = fopen (“http://www.xxx.com/”, “rb”);<br />$contents = “”;<br />do {<br />$data = fread($handle, 8192);<br />if (strlen($data) == 0)<br />{break;}<br />$contents .= $data;<br />} while(true);<br />fclose ($handle);<br />echo $contents;<br /><p>?>
1. file_get_contents を使用し、fopen はallow_url_fopen を有効にする必要があります。
方法: php.ini を編集し、allow_url_fopen = On に設定します。allow_url_fopen がオフの場合、fopen も file_get_contents もリモート ファイルを開くことができません。
2.curl を使用するには、curl を有効にするためのスペースが必要です。
方法: WIN で php.ini を変更し、extension=php_curl.dll の前のセミコロンを削除し、ssleay32.dll と libeay32.dll を C:WINDOWSsystem32 にコピーします。
次に、カール拡張機能をインストールする必要があります。
URL を開くときは、開く速度を最適化するために file_get_contents() メソッドを使用することをお勧めします