Guzzle 6: no more json() method for responses

Previously in Guzzle 5.3:

$response = $client->get('http://httpbin.org/get');
$array = $response->json(); // Yoohoo
var_dump($array[0]['origin']);

I could easily get a PHP array from a JSON response. Now In Guzzle 6, I don’t know how to do. There seems to be no json() method anymore. I (quickly) read the doc from the latest version and don’t found anything about JSON responses. I think I missed something, maybe there is a new concept that I don’t understand (or maybe I did not read correctly).

Is this (below) new way the only way?

$response = $client->get('http://httpbin.org/get');
$array = json_decode($response->getBody()->getContents(), true); // :'(
var_dump($array[0]['origin']);

Or is there an helper or something like that?

6 Answers
6

Leave a Comment