$url = 'http://www.example.com';
$content = file_get_contents($url);
$url = 'http://www.example.com';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$url = 'http://www.example.com';
$handle = fopen($url, 'r');
$content = stream_get_contents($handle);
fclose($handle);
這些方法都可以用來訪問URL并獲取其內容,選擇適合自己需求的方法來完成網頁內容的獲取。