卷曲如何使用cookie
嘿,我正在尝试在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用的
curl_setopt
错误,并且 cookie 的格式不太正确。You're using
curl_setopt
wrong, and the format of your cookie isn't quite right.您正在调用
curl_set_opt
PHP手册错误。您的版本用于设置单个选项。如果你想传递一个array
选项,那么你必须使用curl_setopt_array
PHP 手册。尝试:
You're calling
curl_set_opt
PHP Manual wrong. Your version is for setting a single option. If you want to pass anarray
of options, then you have to usecurl_setopt_array
PHP Manual.Try: