
20.08.2009, 19:13
|
|
Познавший АНТИЧАТ
Регистрация: 24.06.2008
Сообщений: 1,996
С нами:
9410786
Репутация:
2731
|
|
PHP код:
...
curl_setopt($ch, CURLOPT_HEADER, 1);
$res=curl_exec($ch);
preg_match_all('#Set-Cookie: (.*); expires#i', $res, $matches);
print_r($matches);
...
|
|
|