JsonEncoder
class JsonEncoder implements EncoderInterface, DecoderInterface
Encodes JSON data.
Constants
FORMAT |
|
Methods
scalar
encode(mixed $data, string $format, array $context = array())
Encodes data into the given format.
mixed
decode(string $data, string $format, array $context = array())
Decodes a string into PHP data.
bool
supportsEncoding(string $format)
Checks whether the serializer can encode to given format.
bool
supportsDecoding(string $format)
Checks whether the deserializer can decode from given format.
Details
at line line 33
__construct(JsonEncode $encodingImpl = null, JsonDecode $decodingImpl = null)
at line line 42
scalar
encode(mixed $data, string $format, array $context = array())
Encodes data into the given format.
at line line 50
mixed
decode(string $data, string $format, array $context = array())
Decodes a string into PHP data.
at line line 58
bool
supportsEncoding(string $format)
Checks whether the serializer can encode to given format.
at line line 66
bool
supportsDecoding(string $format)
Checks whether the deserializer can decode from given format.