$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);
這些方法都可以用來(lái)訪問(wèn)URL并獲取其內(nèi)容,選擇適合自己需求的方法來(lái)完成網(wǎng)頁(yè)內(nèi)容的獲取。