Serializer
Serializer
Serializer - deserialize update object
The Serializer component is meant to be used to turn objects into a specific format (XML, JSON, YAML, ...) and the other way around.
Normalizers (object < = > array)
Encoders (format(json, xml, csv, yaml…) < = > array)
Core Components:
Normalizers: Transform objects to and from arrays. Different normalizers are available for handling various types of objects.
Encoders: Convert arrays into specific formats (like JSON, XML, CSV) and decode these formats back into arrays.
Context: Provides additional settings or parameters to influence the serialization and deserialization processes.
Serialize (object ⇒ format)
deserialize (format ⇒ object)
deserialize can be used to update the object to
This is a common need when working with an ORM.
The AbstractNormalizer::OBJECT_TO_POPULATE
is only used for the top level object
If that object is the root of a tree structure, all child elements that exist in the normalized data will be re-created with new instances.
When the AbstractObjectNormalizer::DEEP_OBJECT_TO_POPULATE
option is set to true, existing children of the root OBJECT_TO_POPULATE
are updated from the normalized data, instead of the denormalizer re-creating them. Note that DEEP_OBJECT_TO_POPULATE
only works for single child objects, but not for arrays of objects. Those will still be replaced when present in the normalized data.
Context
Context refers to additional settings to pass to the serializer/deserializer
You can pass the context as follows:
or
or
Features
attributes groups
to normalize/denormalize different attributes
selecting specific attributes
ignoring attributes
Converting property names: custom, camelCase to snake_case
booleans: it works for has, get and can (App\Model\Person::isSportsperson())
callbacks: When serializing, you can set a callback to format a specific object property.
Normalizer
Normalizers in Symfony's Serializer are responsible for converting data between object and array (or scalar values) formats.
Object < = > array
object, getSet, property, datetime…
Always make sure to load the DateTimeNormalizer
when serializing the DateTime
or DateTimeImmutable
classes to avoid excessive memory usage and exposing internal details.
Encoders
Encoders are components that handle the final stage of serialization — converting normalized data (arrays or scalar values) into a specific format (like JSON or XML) and vice versa.
array < = > formats
json, xml, csv, yaml
Circular Reference Handling:
The Serializer can handle circular references to prevent infinite loops during serialization, which is crucial in object graphs with bidirectional relationships.