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;
?>
以上就介绍了 PHP 获取远程网页内容的代码fopen,curl已测,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。