W3cubDocs

/Symfony 2.7

Symfony\Component\Serializer\Encoder\EncoderInterface

interface EncoderInterface

Defines the interface of encoders.

Methods

scalar encode(mixed $data, string $format, array $context = array())

Encodes data into the given format.

bool supportsEncoding(string $format)

Checks whether the serializer can encode to given format.

Details

public scalar encode(mixed $data, string $format, array $context = array())

Encodes data into the given format.

Parameters

mixed $data Data to encode
string $format Format name
array $context options that normalizers/encoders have access to.

Return Value

scalar

Exceptions

UnexpectedValueException

public bool supportsEncoding(string $format)

Checks whether the serializer can encode to given format.

Parameters

string $format format name

Return Value

bool

© 2004–2016 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/2.7/Symfony/Component/Serializer/Encoder/EncoderInterface.html