PHP 如何执行传递 cookie 的 http 请求并将结果保存到字符串
我想执行一个http请求并将当前脚本接收到的所有cookie(特别是会话标识cookie)传递给该请求。然后我想将结果保存在字符串中以供进一步操作。在 PHP 中执行此操作的最佳方法是什么?
I would like to perform an http request and pass all cookies received by the current script (in particular session identifying cookies) to this request. Then I would like to save the result in a string for further manipulation. What is the best way to do this in PHP ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
卷曲? - 它很简单并且支持cookie。
编辑 19.1 - 这是示例
CURLOPT_COOKIEJAR 是 cURL 放置从服务器发送的 cookie 的文件,而 CURLOPT_COOKIEFILE 是包含由 cURL 发送的 cookie 的文件(将其设置为相同的文件将使其成为 cookies 文件)。
另一个选项是手动从结果中读取 cookie(将 CURLOPT_HEADER 设置为 '1' - 它将把结果标头放入 $output )并通过 CURLOPT_COOKIE 发送 cookie(将其设置为格式为 'foo=bar;bar=foo;' 的 cookie 列表)
注意 - 必须在 php.ini 中启用 libcurl
cURL ? - it is simple and supprot cookies .
Edit 19.1 - Here is example
CURLOPT_COOKIEJAR is file where cURL put cookies sent from server and CURLOPT_COOKIEFILE is file with cookies for sending by cURL ( setting it to same one will make it cookies file ).
Another option is manually read cookies from result ( set CURLOPT_HEADER to '1' - it will put result header into $output ) and send cookies via CURLOPT_COOKIE ( set it to list of cookies in format 'foo=bar;bar=foo;' )
Note - libcurl must be enabled in php.ini