Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
how to get the cookies from a php curl into a variable

I have the code below running and what it does is get a web page using curl. My problem is when it gets the web page it doesnt get the cookies from the site.

   $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, ''.$stuff_link[0].'');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($ch, CURLOPT_AUTOREFERER, false);
    $html = curl_exec($ch);
    curl_close ( $ch );
    echo $html;

I tried a few thing none of which worked.

share|improve this question
i seen that post and tired that it doesnt work – user2002220 Jan 24 at 23:51
Please update the code to what your trying/using – Mark Jan 25 at 0:48

marked as duplicate by Ibu, Omar Jackman, Peter O., Sjoerd, Sudarshan Jan 25 at 12:38

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

$ch = curl_init('http://www.google.com/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// get headers too with this line
curl_setopt($ch, CURLOPT_HEADER, 1);
$result = curl_exec($ch);
// get cookie, all cos sometime set-cookie could be more then one
preg_match_all('/^Set-Cookie:\s*([^\r\n]*)/mi', $result, $ms);
// print_r($result);
$cookies = array();
foreach ($ms[1] as $m) {
    list($name, $value) = explode('=', $m, 2);
    $cookies[$name] = $value;
}
print_r($cookies);
share|improve this answer
thanks with this it prints the cookies but they are not set in my browser – user2002220 Jan 25 at 2:56
Yes, true. The server (URL) trying to set cookies but can't, cos cookies go to CURL (in simple saying). So it's same with this (command line): curl -v http://google.com/. But if you open URL with your browser these cookies will be set on your browser. – qeremy Jan 25 at 4:46

try this:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "HTTP://URLHERE.COM");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, false);
$html = curl_exec($ch);
preg_match('/^Set-Cookie: (.*?);/m', curl_exec($ch), $m);
var_dump(parse_url($m[1]));
curl_close ( $ch );
echo $html;

Duplicate question pretty much from: how to get the cookies from a php curl into a variable

share|improve this answer
Thanks i seen that post i tried this and it didnt work it still not getting all the cookies and setting them for me. – user2002220 Jan 24 at 23:52
provide us with an example of the code you're using and what it returns please – Mark Jan 24 at 23:53
Im using the code above and $stuff_link[0] is set to a link which as cookies but when the curl run it doesnt load cookies – user2002220 Jan 25 at 0:11
it returns this from using above code array(1) { ["path"]=> string(0) "" } – user2002220 Jan 25 at 0:13

Not the answer you're looking for? Browse other questions tagged or ask your own question.