卷曲如何使用cookie

发布于 2024-11-26 10:16:19 字数 237 浏览 2 评论 0原文

嘿,我正在尝试在curl中使用cookie,但我无法让它工作,所以基本上我需要的是在使用 ab = 1 ab2 = 3 和 ab3 = 10 加载 url 设置 cookie 时,我尝试加载cookie,但这不起作用,然后我尝试了这段代码

curl_setopt($curl,array('Cookie: ab=1,ab2=3,ab3=10')); 

,但出现错误。

Hey i am trying to use cookies in curl, but I can not get it to work so basically what I need is to when loading the url set cookie with ab = 1 ab2 = 3 and ab3 = 10, I tried loading cookies but that doesnt work then i tried this code

curl_setopt($curl,array('Cookie: ab=1,ab2=3,ab3=10')); 

but I am getting errors.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

歌入人心 2024-12-03 10:16:19

您使用的 curl_setopt 错误,并且 cookie 的格式不太正确。

curl_setopt($curl, CURLOPT_COOKIE, 'ab=1; ab2=3; ab3=10');

You're using curl_setopt wrong, and the format of your cookie isn't quite right.

curl_setopt($curl, CURLOPT_COOKIE, 'ab=1; ab2=3; ab3=10');
情痴 2024-12-03 10:16:19

您正在调用 curl_set_optPHP手册错误。您的版本用于设置单个选项。如果你想传递一个 array 选项,那么你必须使用 curl_setopt_arrayPHP 手册

尝试:

curl_setopt($curl, CURLOPT_COOKIE, "ab=1, ab2=3, ab3=10")

You're calling curl_set_optPHP Manual wrong. Your version is for setting a single option. If you want to pass an array of options, then you have to use curl_setopt_arrayPHP Manual.

Try:

curl_setopt($curl, CURLOPT_COOKIE, "ab=1, ab2=3, ab3=10")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文