gpt4 book ai didi

php - 当 session Cookie 过期时使用 cURL

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:51:02 33 4
gpt4 key购买 nike

通常,在使用浏览器时, session cookie 会在浏览器窗口关闭时过期。

但是当使用 (php) cURL(并设置 COOKIE_FILECOOKIE_JAR 选项)时,它们能存活多久?

最佳答案

根据 mozilla.org :

session cookie [...] is deleted when the client shuts down, because it didn't specify an Expires or Max-Age directive. However, web browsers may use session restoring, which makes most session cookies permanent, as if the browser was never closed.

根据documentation of curl_setopt功能:

By default, libcurl always stores and loads all cookies, independent if they are session cookies or not. Session cookies are cookies without expiry date and they are meant to be alive and existing for this "session" only.

如果您将 cookie 保存在指定的文件中

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://stackoverflow.com');
curl_setopt($ch, CURLOPT_COOKIEJAR, dirname(__FILE__) . '/cookie.txt');
$output = curl_exec($ch);
curl_close($ch);

然后,从客户端的角度来看,只要 CURLOPT_COOKIEJAR 设置了正确的 cookie, session 就会处于事件状态。这是您的脚本的选择。

关于php - 当 session Cookie 过期时使用 cURL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28254892/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com