class JsonEncoder implements EncoderInterface, DecoderInterface
Encodes JSON data.
Constants
FORMAT |
Methods
__construct(JsonEncode $encodingImpl = null, JsonDecode $decodingImpl = null) | ||
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
__construct(JsonEncode $encodingImpl = null, JsonDecode $decodingImpl = null)
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.
Please login to continue.