-1

Here is my output. See end of line. The output just gives me '...'.

      public 'results' => 
        array (size=1)
          0 => 
            object(..)[18]
              ...

And this is my code to debug the result.

var_dump(json_decode($response));
entpnerd
  • 10,049
  • 8
  • 47
  • 68
Rahma TV
  • 49
  • 4

1 Answers1

2

you are using xdebug in background, add following code :

ini_set("xdebug.var_display_max_children", -1);
ini_set("xdebug.var_display_max_data", -1);
ini_set("xdebug.var_display_max_depth", -1);

check if your problem is solved or not

S.Kashizadeh
  • 563
  • 4
  • 14