0

こんにちは、私は CURL の初心者ですが、json データを要求して結果を解析しようとしています。データの取得には成功していますが、応答を処理できません。これがコードです

function bitBucketCurl($url)
{
global $bitPassword;
global $bitUsername;

$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERPWD, "$bitUsername:$bitPassword");
curl_setopt($ch, CURLOPT_HEADER, 0);

// grab URL and pass it to the browser
$commitinfo = curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);

return $commitinfo;
 }

$json = bitBucketCurl($url); 
echo $json; // This seems to work in that, when I load the page, I can see the json data

//turn json data into an array - this is what does not seem to be working
$obj_a = json_decode($json, true);

print_r ($obj_a); //the result is simply a 1 rather than the array I would expect

基本的な問題は、json データが表示されることですecho $jsonが、そのデータを配列に変換しようとすると機能しません。配列を印刷すると、「1」が表示されます。

4

1 に答える 1

1

次の行を追加して、必要な結果を得ました。

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
于 2013-03-07T17:06:43.623 に答える