Skip to content

Symfony_Extract_Data_From_JsonResponse

Jason Lewis edited this page Aug 16, 2023 · 1 revision

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
Clone this wiki locally