1、fopen的使用
複製代碼 代碼如下:
$handle = fopen ("http ://s.jb51.net/", "rb");
$contents = "";
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}
fclose($handle);
echo $contents; //輸出取得到得內容。
?>
複製程式碼 程式碼如下:
// 對PHP 5 及更高版本可以使用下面的程式碼
$handle = fopen("http://s.jb51.net", "rb");
$contents = stream_get_contents($handle);
fclose($handle);
echo $contents;
?>
複製程式碼 程式碼如下:
$url =$ "http://s.jb51.net";
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 🎜>curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT,10);
$dxycontent = curl_exec($ch);
echo $dxycontent;
?lin>
echo $dxycontent;
?lin>
以上就介紹了 PHP 取得遠端網頁內容的程式碼fopen,curl已測,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。