1

我正在编写一个函数来获取验证码,当然它需要保持会话。我将 cookie 文件用于 curl 并将其用于每个请求,但它不起作用。当我查看 cookie 文件时,我看到每次调用该函数时 PHPSESSID 都发生了变化。我该如何解决?

这是我的代码

<?php    
function fetch_captcha($url, $cookie_file = false, $user_agent = DEFAULT_USER_AGENT, $timeout = 10) {
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_VERBOSE, true);
    curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);

    if ($cookie_file) {
        curl_setopt($curl, CURLOPT_COOKIESESSION, true);
        curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_file);
        curl_setopt($curl, CURLOPT_COOKIEFILE, $cookie_file);
    }
    curl_setopt($curl, CURLOPT_USERAGENT, $user_agent);
    curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, $timeout);

    $response = curl_exec($curl);
    curl_close($curl);
    return $response;
}
4

1 回答 1

1

不要使用:

curl_setopt($curl, CURLOPT_COOKIESESSION, true);

PHPSESSID是一个会话 cookie,此选项会导致每次cURL调用都启动一个新会话,因此它会忽略文件中的所有会话 cookie。

于 2013-10-05T06:48:49.323 回答