码迷,mamicode.com
首页 > Web开发 > 详细

curl get请求添加header头信息

时间:2018-03-20 15:16:00      阅读:1702      评论:0      收藏:0      [点我收藏+]

标签:exe   class   gpo   title   splay   get   font   get请求   out   

function get($url) {
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_HTTPGET, true);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //TRUE 将curl_exec()获取的信息以字符串返回,而不是直接输出。

    $header = [‘User-Agent: php test‘]; //设置一个你的浏览器agent的header
    curl_setopt($ch, CURLOPT_HTTPHEADER, $header);

    curl_setopt($ch, CURLOPT_HEADER, 1); //返回response头部信息
    curl_setopt($ch, CURLINFO_HEADER_OUT, true); //TRUE 时追踪句柄的请求字符串,从 PHP 5.1.3 开始可用。这个很关键,就是允许你查看请求header

    curl_setopt($ch, CURLOPT_URL, $url);
    $result = curl_exec($ch);

    echo curl_getinfo($ch, CURLINFO_HEADER_OUT); //官方文档描述是“发送请求的字符串”,其实就是请求的header。这个就是直接查看请求header,因为上面允许查看

    curl_close($ch);

    return $result;

 

curl get请求添加header头信息

curl get请求添加header头信息

标签:exe   class   gpo   title   splay   get   font   get请求   out   

原文地址:https://www.cnblogs.com/gaogaoxingxing/p/8608856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!