简体   繁体   中英

status of php, curl session

I am going to logged in a web site using curl. Its going to logged in fine. Now I want to know the status of session, that it is alive or not. Because user may send request for different pages after logging in. My code is here. thanks

$url="https://mywebsite.com/login.pl";
$ch = curl_init();
curl_setopt ($ch, CURLOPT_COOKIEJAR, 'cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, "username=xxxxxx&passwd=xxxxx&client=xxxxx");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_MAXREDIRS, 4);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$store = curl_exec ($ch);
curl_close ($ch);

You'll need to grab cookies and use 'em in your next request, something like:

curl_setopt($ch,    CURLOPT_COOKIE,         $cookie); 
curl_setopt($ch,    CURLOPT_AUTOREFERER,    true); 
curl_setopt($ch,    CURLOPT_COOKIESESSION,  true); 
curl_setopt($ch,    CURLOPT_FAILONERROR,    false); 
curl_setopt($ch,    CURLOPT_FOLLOWLOCATION, false); 
curl_setopt($ch,    CURLOPT_FRESH_CONNECT,  true); 
curl_setopt($ch,    CURLOPT_HEADER,         false); 
curl_setopt($ch,    CURLOPT_POST,           false); 
curl_setopt($ch,    CURLOPT_RETURNTRANSFER, true); 
$result = curl_exec($ch); 
curl_close($ch); 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM