您现在的位置是:首页 > 技术教程 正文

php下curl发送cookie

admin 阅读: 2024-03-15
后台-插件-广告管理-内容页头部广告(手机)

目录

一:使用 CURLOPT_COOKIE 选项

二:CURLOPT_COOKIEFILE

三:CURLOPT_HTTPHEADER


php curl发送cookie的几种方式,下面来介绍下

一:使用 CURLOPT_COOKIE 选项

通过设置 CURLOPT_COOKIE 选项,你可以将 cookie 字符串传递给 cURL 请求

           $url = 'http://127.0.0.1/a/b/c';
            $cookie = "name=value; another_name=another_value";
            $headerArray =array("Content-type:application/json;charset='utf-8'",
                "Accept:application/json","Platform:pc");
            $ch = curl_init();
            curl_setopt($ch, CURLOPT_URL, $url);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArray);
            curl_setopt($ch, CURLOPT_POST, 1);
            curl_setopt($ch, CURLOPT_POSTFIELDS, []);
            curl_setopt($ch, CURLOPT_COOKIE, $cookie);
            $response = curl_exec($ch);
            curl_close($ch);
            
            cookie信息如下:
            {"connection":"close","content-type":"application\/json;charset='utf-8'","content-length":"0","platform":"pc","accept":"application\/json","cookie":"name=value; another_name=another_value","host":"127.0.0.1"}

二:CURLOPT_COOKIEFILE

使用 CURLOPT_COOKIEFILE ,通过设置 CURLOPT_COOKIEFILE 选项,你可以指定一个包含 cookie 的文件,cURL 将从该文件中读取 cookie。
            
            
                $url = 'http://127.0.0.1/a/b/c';

                $cookiePath = 'E:/DB/cookie.txt';
                $headerArray =array("Content-type:application/json;charset='utf-8'",
                "Accept:application/json","Platform:pc","Cookie: name=value; another_name=another_value");
                $ch = curl_init();
                curl_setopt($ch, CURLOPT_URL, $url);
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArray);
                curl_setopt($ch, CURLOPT_POST, 1);
                curl_setopt($ch, CURLOPT_POSTFIELDS, []);
                curl_setopt($ch, CURLOPT_COOKIEFILE, $cookiePath);

                $response = curl_exec($ch);
                curl_close($ch);

三:CURLOPT_HTTPHEADER

使用 CURLOPT_HTTPHEADER 选项:你可以使用 CURLOPT_HTTPHEADER 选项来发送自定义的 HTTP 头信息,包括 Set-Cookie 头。例如:

    $url = 'http://127.0.0.1/a/b/c';
                $headerArray =array("Content-type:application/json;charset='utf-8'",
                "Accept:application/json","Platform:pc","Cookie: name=value; another_name=another_value");
                $ch = curl_init();
                curl_setopt($ch, CURLOPT_URL, $url);
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArray);
                curl_setopt($ch, CURLOPT_POST, 1);
                curl_setopt($ch, CURLOPT_POSTFIELDS, []);
                $response = curl_exec($ch);
                curl_close($ch);

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索
排行榜