<?php $x = new stdClass(); $y = new StdClass(); $x-> a = 10; $y->x = $x; $j = json_encode($y); $j2 = json_decode($j); var_dump($j2); var_dump((array) $j2); $j3 = json_decode($j, true); var_dump($j3);
You have javascript disabled. You will not be able to edit any code.