如何利用php代码cURL库抓取网页的方法

2024年06月04日 建站教程

PHP代码如何利用cURL库抓取网页,下面web建站小编给大家简单介绍一下!

具体语法如下:

$header[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
$url = "http://example.com";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$output = curl_exec($ch);
curl_close($ch);
echo $output;

参数介绍:

CURLOPT_URL: 设置要访问的URL地址
CURLOPT_RETURNTRANSFER: 将cURL返回的内容保存到字符串变量中
CURLOPT_HEADER: 在返回结果中不包括头文件信息

本文链接:http://so.lmcjl.com/news/5940/

展开阅读全文
相关内容