在PHP中獲取外部網(wǎng)頁內(nèi)容通常使用cURL庫或者file_get_contents()函數(shù)。下面分別介紹這兩種方法。
$url = 'http://www.example.com';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
$url = 'http://www.example.com';
$output = file_get_contents($url);
echo $output;
這兩種方法都可以用來獲取外部網(wǎng)頁的內(nèi)容,但是cURL庫比file_get_contents()函數(shù)更強大和靈活,可以設(shè)置更多的選項和參數(shù)。