class JsonDecode implements DecoderInterface
Decodes JSON data.
protected | $serializer |
__construct(bool $associative = false, int $depth = 512) Constructs a new JsonDecode instance. | ||
mixed | decode(string $data, string $format, array $context = array()) Decodes data. | |
bool | supportsDecoding(string $format) Checks whether the deserializer can decode from given format. |
Constructs a new JsonDecode instance.
bool | $associative | True to return the result associative array, false for a nested stdClass hierarchy |
int | $depth | Specifies the recursion depth |
Decodes data.
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. |
mixed |
NotEncodableValueException |
http://php.net/json_decode | json_decode |
Checks whether the deserializer can decode from given format.
string | $format | Format name |
bool |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Serializer/Encoder/JsonDecode.html