Получить идентификатор сессии от входа через PHP CURL - PullRequest
0 голосов
/ 26 мая 2019

Я хочу войти в gounlimited.to через PHP CURL, и я хочу получить после входа в систему значение "sess_id" на этой странице: https://gounlimited.to/?op=upload_file

Я пробовал следующий код без успеха.Я не буду входить в систему:

$ch = curl_init("http://gounlimited.to/");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1');
curl_setopt($ch, CURLOPT_REFERER, '');
$arr = array('op' => 'login', 'login' => 'XXXX', 'password' => 'XXXX');
curl_setopt($ch, CURLOPT_POSTFIELDS, $arr); 
$output = curl_exec($ch);      
curl_close($ch);
print_r($output);

1 Ответ

0 голосов
/ 26 мая 2019

Попробуйте также получить заголовки, добавьте следующие опции.

curl_setopt($ch, CURLOPT_HEADER, 1);
...