Constructs a new JsonDecode instance.
Boolean $associative True to return the result associative array, false for a nested stdClass hierarchy:
integer $depth Specifies the recursion depth:
public function __construct($associative = false, $depth = 512) {
$this->associative = $associative;
$this->recursionDepth = (int) $depth;
}