PHP 如何执行传递 cookie 的 http 请求并将结果保存到字符串

发布于 2024-10-12 04:20:30 字数 102 浏览 3 评论 0原文

我想执行一个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 技术交流群。

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

发布评论

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

评论(1

枫以 2024-10-19 04:20:30

卷曲? - 它很简单并且支持cookie。

编辑 19.1 - 这是示例

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');

$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);

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

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');

$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);

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

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