JsonDecode

class JsonDecode implements DecoderInterface

Decodes JSON data.

Methods

__construct(bool $associative = false, int $depth = 512)

Constructs a new JsonDecode instance.

int getLastError() deprecated

Returns the last decoding error (if any).

mixed decode(string $data, string $format, array $context = array())

Decodes data.

bool supportsDecoding(string $format)

Checks whether the deserializer can decode from given format.

Details

__construct(bool $associative = false, int $depth = 512)

Constructs a new JsonDecode instance.

Parameters

bool $associative True to return the result associative array, false for a nested stdClass hierarchy
int $depth Specifies the recursion depth

int getLastError() deprecated

deprecated

since version 2.5, to be removed in 3.0. The {@self decode()} method throws an exception if error found.

Returns the last decoding error (if any).

Return Value

int

See also

http://php.net/manual/en/function.json-last-error.php json_last_error

mixed decode(string $data, string $format, array $context = array())

Decodes data.

Parameters

string $data Data to decode
string $format Format name
array $context options that decoders have access to

The format parameter specifies which format the data is in; valid values depend on the specific implementation. Authors implementing this interface are encouraged to document which formats they support in a non-inherited phpdoc comment.

Return Value

mixed

Exceptions

UnexpectedValueException

See also

http://php.net/json_decode json_decode

bool supportsDecoding(string $format)

Checks whether the deserializer can decode from given format.

Parameters

string $format format name

Return Value

bool

© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/2.8/Symfony/Component/Serializer/Encoder/JsonDecode.html