Symfony_Extract_Data_From_JsonResponse - gecko-8/devwiki GitHub Wiki
- Pull out the data
$result = $jsonResponse->GetContent(); - Decode the json
$decodedResult = json_decode($result); - Do what you need to do with the data
$result = $jsonResponse->GetContent();$decodedResult = json_decode($result);