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.

I have some PHP code that calls into the cURL library. I'm using it to get JSON data.

I have set cURL opt 'CURLOPT_RETURNTRANSFER' to 1, but still get status code..

Code follows:

<?php
function fetch_page($url)
{

    $ch = curl_init();

    $array = array(
        'include'=>'ayam'
    );

    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $array);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    $result = curl_exec ($ch);
    curl_close ($ch);

    return $result;
} 

$return  = fetch_page(MY_LINK_URL);

echo json_decode($return);
?>
share|improve this question

5 Answers

up vote 0 down vote accepted

The code looks totally correct. Try var_dump($result) before returning it to see what it is exactly.

Also, set CURLOPT_HEADER to 1 and check the view source of the output in your browser; both of these can help debug the issue. Edit the question and post the results if so we can help more effectively.

Update: Since you are using HTTPS, also add

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
share|improve this answer
thanks jon, i just get bool(true) in my browser.. – pensilhijau Apr 3 '11 at 3:30
@pensilhijau: Have a look at the update, maybe that will help? – Jon Apr 3 '11 at 9:36
yes, thanks jon.. it's solved now.. ^^ – pensilhijau Apr 3 '11 at 18:16

According to the PHP docs,

Returns TRUE on success or FALSE on failure. However, if the CURLOPT_RETURNTRANSFER option is set, it will return the result on success, FALSE on failure.

So that means you should get success: the result failure: FALSE (which is echoed as 0)

Also, if you are fetching JSON, and need to access it, use json_decode() not json_encode().

share|improve this answer
thanks for correcting, I forgot to replace json_encode.. – pensilhijau Apr 2 '11 at 6:49

Well, you should tell us wich url you're pointing (and wich version of php you are running). I've tried with php 5.3 on "www.google.com" and it worked as expected ($result contains the whole webpage)

share|improve this answer
the url that i pointing is use https, is problem with that? and im use php 5.1 – pensilhijau Apr 2 '11 at 16:32
No, it should be no problem...are you completly sure the page you are pointing is OK? – ArtoAle Apr 5 '11 at 13:10

Might of had a similar problem: - cURL on local dev network problem with virtual host naming

Before you close your curl handle output this:

$result = curl_exec ($ch);
print_r(curl_getinfo($ch));
curl_close ($ch);

Here was my solution for getting around the virtual host

// This is your Virtual Hosts name
$request_host   = 'dev.project'; 

// This is the IP
$request_url    = '192.168.0.1';

$headers = array("Host: ".$request_host);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);     
curl_setopt($ch, CURLOPT_URL, $request_url.'?'.$request_args);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
share|improve this answer
thanks phill..but i don't use virtual host.. – pensilhijau Apr 3 '11 at 3:28

That looks correct. I actually have the same problem, but when I added

curl_setopt($ch,  CURLOPT_RETURNTRANSFER, 1);

it returns json code correctly instead of returning 1(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.