溫馨提示×

PHP怎么獲取外部網(wǎng)頁內(nèi)容

PHP
小億
95
2024-04-29 14:43:40
欄目: 編程語言

在PHP中獲取外部網(wǎng)頁內(nèi)容通常使用cURL庫或者file_get_contents()函數(shù)。下面分別介紹這兩種方法。

  1. 使用cURL庫:
$url = 'http://www.example.com';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);

echo $output;
  1. 使用file_get_contents()函數(shù):
$url = 'http://www.example.com';
$output = file_get_contents($url);

echo $output;

這兩種方法都可以用來獲取外部網(wǎng)頁的內(nèi)容,但是cURL庫比file_get_contents()函數(shù)更強大和靈活,可以設(shè)置更多的選項和參數(shù)。

0