简体   繁体   English

在PHP中解析JSON响应 - 受保护的密钥?

[英]Parse JSON response in PHP - Protected keys?

I am using Curl to perform a GET request on a Sage server. 我正在使用Curl在Sage服务器上执行GET请求。 The response is in JSON format, but I am unable to access the key/values. 响应采用JSON格式,但我无法访问键/值。

An example of the response is below: 响应的一个例子如下:

{
"$descriptor": "Sage Accounts 50 | tradingAccount.",
  "$totalResults": 1508,
  "$startIndex": 1,
  "$itemsPerPage": 1508,
  "$resources": [
   {
      "$url": "http://it1:5493/sdata/accounts50/GCRM/{53C58AA8-1677-46CE-BCBE-4F07FED3668F}/tradingAccountCustomer(9a7a0179-85cb-4b65-9d02-73387073ac83)?format=atomentry",
      "$uuid": "9a7a0179-85cb-4b65-9d02-73387073ac83",
      "$httpStatus": "OK",
      "$descriptor": "",
      "active": true,
      "customerSupplierFlag": "Customer",
      "companyPersonFlag": "Company",
      "invoiceTradingAccount": null,
      "openedDate": "\/Date(1246834800000+0100)\/",
      "reference": "1STCL001",
      "reference2": null,
      "status": "Open"
    }
    /* Additional results omitted for simplicity */
}

I need to access 2 key/value pairs for each child of $resources . 我需要为$resources每个子项访问2个键/值对。 The first is $uuid and the second is reference . 第一个是$uuid ,第二个是reference

I have attempted various methods including: 我尝试了各种方法,包括:

$result=curl_exec($ch);
$resources = $result->{'$resources'};
print_r($resources); /* Non-object error */

Can someone shed some light on how I can access these key/values, please? 有人可以了解我如何获取这些关键/值,请?

Update 更新

If I perform the following action, I receive a Notice: Trying to get property of non-object error. 如果我执行以下操作,我会收到一条Notice: Trying to get property of non-object错误的Notice: Trying to get property of non-object

$result = json_decode(curl_exec($ch));
$resources = $result->{'$resources'};
print_r($resources);

Edit 2 编辑2

Entire code currently used: 目前使用的全部代码:

<?php 
header('content-type:application/json');
error_reporting(E_ALL);

$url = "http://it1:5493/sdata/accounts50/GCRM/-/tradingAccounts?format=json";

$header = array();
$header[] = 'Authorization: Basic bWFuYWdlcjpjYmwyMDA4';
$header[] = 'Content-Type: application/json;';

//  Initiate curl
$ch = curl_init();
// Will return the response, if false it print the response
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Set the url
curl_setopt($ch, CURLOPT_URL,$url);
// Set the header
curl_setopt($ch, CURLOPT_HTTPHEADER,$header);
// Execute
$result = json_decode(curl_exec($ch));

if ($result === false)
{
    // throw new Exception('Curl error: ' . curl_error($crl));
    print_r('Curl error: ' . curl_error($ch));
}
// Closing
curl_close($ch);

// Access property $resources
$resources = $result->{'$resources'};

// Dump results
print_r($resources);


?>

Edit 3 编辑3

Output of var_dump($result); var_dump($result);输出var_dump($result);

string '{
   "$descriptor": "Sage Accounts 50 | tradingAccount",
   "$totalResults": 1508,
   "$startIndex": 1,
   "$itemsPerPage": 1508,
   "$resources": [
      {
       "$url": "http://it1:5493/sdata/accounts50/GCRM/{53C58AA8-1677-46CE-BCBE-4F07FED3668F}/tradingAccountCustomer(9a7a0179-85cb-4b65-9d02-73387073ac83)?format=atomentry",
       "$uuid": "9a7a0179-85cb-4b65-9d02-73387073ac83",
       "$httpStatus": "OK",
       "$descriptor": "",
       '... (length=5333303)

The server is returning the JSON encoded as UTF-8 with BOM which puts 3 characters at the begining of the string. 服务器返回编码为UTF-8的JSON,其中BOM在字符串的开头放置3个字符。 Just try to obtain the JSON correctly encoded or if you can't, remove the 3 first characters and then use json_decode to obtain the PHP object. 只是尝试获取正确编码的JSON,或者如果不能,则删除3个第一个字符,然后使用json_decode获取PHP对象。

UPDATE: 更新:
The server response was UTF-8 encoded with BOM (byte-order-mark) which caused the json_encode to fail with JSON_ERROR_SYNTAX 服务器响应采用带有BOM(字节顺序标记)的UTF-8编码,导致json_encode失败并显示JSON_ERROR_SYNTAX

working code 工作代码

$string = curl_exec($ch);

$object = json_decode(remove_utf8_bom($string),true);


foreach ($object as $key => $value)
    if (is_array($value))
        foreach($value as $k=>$arr){
            print $arr['$uuid'] . PHP_EOL;
            print $arr['reference'] . PHP_EOL;
        }

function remove_utf8_bom($text)
{
    $bom = pack('H*','EFBBBF');
    $text = preg_replace("/^$bom/", '', $text);
    return $text;
}

remove_utf8_bom function ripped from here https://stackoverflow.com/a/15423899/5043552 remove_utf8_bom函数从这里翻录https://stackoverflow.com/a/15423899/5043552


This is how you can access the key/values, assuming $result is the contents of json_decode as per your latest edit. 这是你可以访问键/值的方法,假设$result是你最新编辑的json_decode的内容。

foreach ($result->{'$resources'} as $obj){
    print $obj->{'$uuid'} . PHP_EOL;
    print $obj->reference . PHP_EOL;
}
// prints out
// 9a7a0179-85cb-4b65-9d02-73387073ac83
// 1STCL001

You're missing json_decode call. 你缺少json_decode调用。 Try this: 尝试这个:

$result = json_decode(curl_exec($ch));
$resources = $result->{'$resources'};
$result = json_decode(curl_exec($ch)); // Decode the JSON
$resources = $result->{'$resources'}; // Access the $resources property which is an array
print_r($resources); // Prints an array
$result = json_decode(curl_exec($ch));
$resources = $result->{'$resources'};

You have to decode JSON 你必须解码JSON

The key fact here that everyone else seems to be missing is that $resources is an defined in the JSON as array, not an object, so json_decode() will turn it into a PHP array, not a PHP object. 其他人似乎都缺少的关键事实是$resources是在JSON中定义为数组而不是对象,因此json_decode()会将其转换为PHP数组,而不是PHP对象。

$result = json_decode(curl_exec($ch));
$resources = $result['$resources'];   //resources is an array, not an object.

foreach ($resources as $resource) {
    //but each resource is an object...
    print $resource->{'$url}."\n";
    print $resource->{'$uuid}."\n";
    // ...etc...
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM