Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 cURL 会话每次运行时都会生成一个新的 cookie。如何将相同的 cookie 用于不同的脚本?
我的设置:
curl_setopt($curl, CURLOPT_COOKIESESSION, false); curl_setopt($curl, CURLOPT_COOKIEFILE, $cookiefilename); curl_setopt($curl, CURLOPT_COOKIEJAR, $cookiefilename);
谢谢!
您是否尝试过使用 True? curl_setopt($curl, CURLOPT_COOKIESESSION, true); 您是否确认 cookie 正在写入 $cookiefilename? 您是否尝试在 cookie 的持续时间内“重新运行”脚本? 您正在尝试重复使用 cookie?
curl_setopt($curl, CURLOPT_COOKIESESSION, true);