如何读取并转储json_decode结果?

时间:2019-05-06 08:33:31

标签: php json jsonresponse

我的json响应有点问题。

我将其转储到了我的php代码中,结果就是我在此处附加的内容

如何转储statusText

我已经尝试过对其进行解码,而我也尝试过:

dump($myVar['statusText']);

或类似的东西

(要获取我发布的json的转储,我刚刚做了 dump($myVar);

JsonResponse {#325
  #data: "{"code":"OK","status":"ok","data":{"UUID":"f239ae18-98af-4224-8b4f-7713c71a5576","order":{something here },"orderRows":[something else here}}"
  #callback: null
  #encodingOptions: 271
  +headers: ResponseHeaderBag {#326
    #computedCacheControl: array:2 [
      "no-cache" => true
      "private" => true
    ]
    #cookies: []
    #headerNames: array:4 [
      "content-type" => "Content-Type"
      "access-control-allow-origin" => "Access-Control-Allow-Origin"
      "cache-control" => "Cache-Control"
      "date" => "Date"
    ]
    #headers: array:4 [
      "content-type" => array:1 [
        0 => "application/json; charset=utf-8"
      ]
      "access-control-allow-origin" => array:1 [
        0 => "*"
      ]
      "cache-control" => array:1 [
        0 => "no-cache, private"
      ]
      "date" => array:1 [
        0 => "Mon, 06 May 2019 08:15:28 GMT"
      ]
    ]
    #cacheControl: []
  }
  #content: "{"code":"OK","status":"ok","data":{"UUID":"f239ae18-98af-4224-8b4f-7713c71a5576","order":{something},"orderRows":[something else}}"
  #version: "1.0"
  #statusCode: 200
  #statusText: "OK"
  #charset: null
}

只想看看 "status" => 'ok',我的生活会很完美:D

1 个答案:

答案 0 :(得分:1)

查看此输出,看起来代码也存储在内容中。

  

“状态”:“确定”

由于这个原因,在getData()方法的this documentation之后,您应该能够检索状态:

$data = $myVar->getData();
var_dump($data->status);

预计这将返回字符串“ ok”。