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.

When I use this code:

$ch = curl_init($url);
$statuses = curl_exec($ch);
curl_close($ch);

I am returned what I want, but if I just use that - $statuses is echoed out onto the page.

How can I stop this?

share|improve this question

2 Answers

up vote 35 down vote accepted

Put this on line 2:

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
share|improve this answer
haha i found that just before you posted :) – tarnfeld Dec 16 '09 at 22:55

Include this option before curl_exec()

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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