Symfony_Extract_Data_From_JsonResponse - gecko-8/devwiki GitHub Wiki

Up

  1. Pull out the data
    $result = $jsonResponse->GetContent();
  2. Decode the json
    $decodedResult = json_decode($result);
  3. Do what you need to do with the data