共计 416 个字符,预计需要花费 2 分钟才能阅读完成。
在 PHP 中获取外部网页内容通常使用 cURL 库或者 file_get_contents() 函数。下面分别介绍这两种方法。
- 使用 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;
- 使用 file_get_contents() 函数:
$url = 'http://www.example.com';
$output = file_get_contents($url);
echo $output;
这两种方法都可以用来获取外部网页的内容,但是 cURL 库比 file_get_contents() 函数更强大和灵活,可以设置更多的选项和参数。
丸趣 TV 网 – 提供最优质的资源集合!
正文完