layout: default
If you are working with a class which implements the TabularDataReader interface you can now deserialize
your data using the TabularDataReader::getRecordsAsObject method. The method will convert your document records
into objects using PHP's powerful Reflection API.
Here's an example using the Reader class which implements the TabularDataReader interface:
use League\Csv\Reader;
$csv = Reader::fromString($document);
$csv->setHeaderOffset(0);
foreach ($csv->getRecordsAsObject(ClimaticRecord::class) as $weather) {
// each $weather entry will be an instance of the ClimaticRecord class;
}
In the following sections we will explain the process and how you can control it.
The deserialization process is done in two steps. The first step is decoding your CSV record into
a PHP array, this part is already handle by the package. The second step is a denormalization
process which will convert your array into an object. This is the part we will focus on.
The process is geared toward converting records into DTO or objects without complex
logic in their constructors.
To work as intended the mechanism expects the following:
array will be denormalized in;As an example throughout the documentation we will assume the following CSV document:
date,temperature,place
2011-01-01,,Abidjan
2011-01-02,24,Abidjan
2011-01-03,17,Abidjan
2011-01-01,18,Yamoussoukro
2011-01-02,23,Yamoussoukro
2011-01-03,21,Yamoussoukro
and define a PHP DTO using the following properties.
<?php
final class ClimaticRecord
{
private ?DateTimeImmutable $date = null,
public function __construct(
public readonly Place $place,
public readonly ?float $temperature,
) {
}
public function setDate(string $date): void
{
$this->date = new DateTimeImmutable($date, new DateTimeZone('Africa/Abidjan'));
}
public function getDate(): ?DateTimeImmutable
{
return $this->date;
}
}
enum Place
{
case Yamoussoukro;
case Abidjan;
}
To get instances of your object, you now can call TabularDataReader::getRecordsAsObject which returns
an Iterator containing only instances of your specified class.
use League\Csv\Reader;
$csv = Reader::fromString($document);
/** [@var](https://github.com/var) ClimaticRecord $instance */
foreach ($csv->getRecordsAsObject(ClimaticRecord::class) as $instance) {
// each $instance entry will be an instance of the ClimaticRecord class;
}
By default, the denormalization engine will automatically fill the class public properties and methods using their names. In other words, if there is:
set and ends with the record key with the first character upper-cased, the record value will be assigned to the method first argument.The autodiscovery feature works out of the box with public properties or arguments typed with one of the following type:
string, int, float, bool)nullEnum (backed or not)DateTimeInterface implementing class.arraythe nullable aspect of the property is also automatically handled.
If the autodiscovery feature is not enough, you can complete the conversion using PHP attributes: The following attributes are supported:
League\Csv\Serializer\MapCellLeague\Csv\Serializer\MapRecordLeague\Csv\Serializer\AfterMapping (deprecated in 9.17.0)Here's an example of how the League\Csv\Serializer\MapCell attribute works:
use League\Csv\Serializer;
use Carbon\CarbonImmutable;
#[Serializer\MapCell(
column: 'date',
cast: Serializer\CastToDate::class,
options: [
'format' => '!Y-m-d',
'timezone' => 'Africa/Nairobi'
],
convertEmptyStringToNull: false,
)]
private CarbonImmutable $observedOn;
The above rule can be translated in plain English like this:
Convert the value of the associative array whose key is
dateinto aCarbonImmutableobject using theCastToDateclass with the date format!Y-m-dand theAfrica/Nairobitimezone. If the value is the empty string, do not convert it into thenullvalue Once created, inject the instance into the class private propertyobservedOn.
This attribute will override any automatic resolution and enable fine-tuning type casting. It can be used on class properties and methods regardless of their visibility and their type.
The attribute can take up to five (5) arguments which are all optional:
column a string or an integer that tells the engine which record key to use via its offset or key. If not present the property name or the name of the first argument of the setter method will be used. In such case, you are required to specify the property names information.cast a string which represents the name of a class implementing the TypeCasting interface or an alias and responsible for type casting the record value. If not present, the mechanism will try to resolve the typecasting based on the property or method argument type.options an associative array to improve typecasting by providing extra options per class/alias. The argument expects an associative array and relies on named arguments to inject its value to the method.ignore a boolean which control if the property or method should be completely ignored by the mechanism. By default, its value is false. This property takes precedence over all the other properties of the attribute once set to true.convertEmptyStringToNull a value that can be a boolean or null, which control if empty string should be converted or not into the null value.trimFieldValueBeforeCasting a value that can be a boolean or null, which control if the string should be trimmed or not before conversion.In any case, if type casting fails, an exception is thrown.
Since version 9.17.0 the MapRecord attribute can be used to control the full record conversion.
The attribute can take up to three (3) arguments which are all optional:
afterMapping an array containing a list of methods to call after mapping.convertEmptyStringToNull a value that can be a boolean or null, which control if empty string should be converted or not into the null value. This value is overwritten by the value defined at field level.trimFieldValueBeforeCasting a value that can be a boolean, which control if the string should be trimmed or not before conversion. This value is overwritten by the value defined at field level.By default, CSV document only contains value represented by strings. To allow better denormalization
you may need to trim the extra whitespace. Since version 9.17.0 the MapCell and the MapRecord
attributes expose the following option: trimFieldValueBeforeCasting.
By default, and to avoid BC break, their initial value is false. But when set to true, before using
the data, the system will remove any whitespace surrounding the property value if it is a string.
$csv = <<<CSV
id,title,description
23 , foobar , je suis trop fort
CSV;
#[Serializer\MapRecord(trimFieldValueBeforeCasting: true)]
final readonly class Item
{
public function __construct(
public int $id,
public string $title,
#[Serializer\MapCell(trimFieldValueBeforeCasting: false)]
public string $description,
) {}
}
$document = Reader::fromString($csv);
$document->setHeaderOffset(0);
$item = $document->firstAsObject(Item::class);
$item->id = 23;
$item->title = 'foobar'; // the white space has been removed
$item->description = ' je suis trop fort'; // the white space is preserved
Out of the box the mechanism converts any empty string value into the null value.
Starting with version 9.17.0 a granular and robust system is introduced. It is now the recommended
way to handle empty string conversion. When in used the new feature override the now deprecated
global state mechanism. You can control the conversion at the field or at the record level.
At the field level you need to use newly introduced convertEmptyStringToNull argument.
When the value is set to true, the conversion will happen. If set to false, no conversion will take
place. By default, the value is set to null to defer the behaviour settings at the object level.
At the object level you can use the new MapRecord attribute with the same argument and the same
possible values. If the value is set to null the behaviour will fall back to the global behaviour to
avoid BC break.
#[Serializer\MapRecord(convertEmptyStringToNull: true)]
final readonly class Car
{
public function __construct(
private Wheel $wheel,
#[Serializer\MapCell(convertEmptyStringToNull: false)]
private Driver $driver
) {}
}
In the above example, every property will see the empty string being converted to null except
for the $driver property.
This system rely on two (2) static methods:
League\Csv\Serializer\Denormalizer::allowEmptyStringAsNullLeague\Csv\Serializer\Denormalizer::disallowEmptyStringAsNullWhen called these methods will change the behaviour when it comes to handling empty string.
Denormalizer::allowEmptyStringAsNull will convert any empty string into the null value
before typecasting whereas Denormalizer::disallowEmptyStringAsNull will preserve the value.
use League\Csv\Reader;
use League\Csv\Serializer\Denormalizer;
$csv = Reader::fromString($document);
$csv->setHeaderOffset(0);
foreach ($csv->getRecordsAsObject(ClimaticRecord::class) {
// the first record contains an empty string for temperature
// it is converted into the null value and handle by the
// default conversion type casting;
}
Denormalizer::disallowEmptyStringAsNull();
foreach ($csv->getRecordsAsObject(ClimaticRecord::class) {
// a TypeCastingFailed exception is thrown because we
// can not convert the empty string into a valid
// temperature property value
// which expects `null` or a non-empty string.
}
Because we are not using the object constructor method, we need a way to work around that limitation
and tagging one or more methods that should be called after all mapping is done to return a valid object.
Tagging is made using the League\Csv\Serializer\MapRecord attribute.
use League\Csv\Serializer;
#[Serializer\MapRecord(afterMapping:['validate'])]
final class ClimateRecord
{
public function __construct(
public readonly Place $place,
public readonly ?float $temperature,
public readonly ?DateTimeImmutable $date,
) {
$this->validate();
}
protected function validate(): void
{
//further validation on your object
//or any other post construction methods
//that is needed to be called
}
}
In the above example, the validate method will be call once all the properties have been set but
before the object is returned. You can specify as many methods belonging to the class as you want
regardless of their visibility by adding them to the array. The methods will be called
in the order they have been declared.
The League\Csv\Serializer\AfterMapping attribute is deprecated in favor of the League\Csv\Serializer\MapRecord
attribute. If both attributes are used simultaneously, the content of the AfterMapping attribute will be ignored.
The example is left for reference.
use League\Csv\Serializer;
#[Serializer\AfterMapping('validate')]
final class ClimateRecord
{
public function __construct(
public readonly Place $place,
public readonly ?float $temperature,
public readonly ?DateTimeImmutable $date,
) {
$this->validate();
}
protected function validate(): void
{
//further validation on your object
//or any other post construction methods
//that is needed to be called
}
}
The library comes bundled with seven (7) type casting classes which relies on the property type information.
They all support nullable, mixed as well as non-typed properties.
null or a specified default value, if the cell value is null and the type is nullableFor scalar conversion, type casting is done using PHP's ext-filter extension.
They are all registered by default, hence, you do not need to specify them using the cast property of the MapCell
attribute unless you are using them on untyped or mixed property where using cast is mandatory
Converts the array value to a string or null depending on the property type information.
The class takes one optional argument default which is the default value to return if
the value is null.
use League\Csv\Serializer\MapCell;
#[MapCell(options: ['default' => 'Kouyaté'])]
private ?string $firstname;
Converts the array value to true, false or null depending on the property type information.
The class takes one optional argument default which is the default boolean value to return if
the value is null.
use League\Csv\Serializer\MapCell;
#[MapCell(options: ['default' => false])]
private ?bool $isValid;
Converts the array value to an int or a float depending on the property type information. The class takes one
optional argument default which is the default int or float value to return if the value is null.
use League\Csv\Serializer\CastToInt;
use League\Csv\Serializer\MapCell;
#[MapCell(cast:CastToInt::class, options: ['default' => 42])]
private mixed $answerId;
#[MapCell(options: ['default' => 15.8])]
private ?float $temperature;
Convert the array value to a PHP Enum, it supports both unit and backed enumeration. The class takes two (2)
optionals arguments:
default which is the default Enum value to return if the value is null.className which is the Enum to use for resolution if the property or method argument is untyped or typed as mixed.If the Enum is backed the cell value will be considered as one of the Enum value; otherwise it will be used
as one the Enum name. The same logic applies for the default value. If the default value
is not null and the value given is incorrect, the mechanism will throw an exception.
use League\Csv\Serializer\CastToEnum;
use League\Csv\Serializer\MapCell;
#[MapCell(
column: 1, // specify the record value via its offset
cast: CastToEnum::class, // explicitly specified because the argument is mixed
options: ['default' => 'Abidjan', 'className' => Place::class]
)]
public function setPlace(mixed $place): void
{
//apply the method logic whatever that is!
//knowing that $place will be a Place enum instance
}
convert the value of the array whose key is
1into aPlaceEnum if the value is null resolve the stringAbidjantoPlace::Abidjan. Once created, call the methodsetPlacewith the createdPlaceenum filling the$placeargument.
Converts the cell value into a PHP DateTimeInterface implementing object. You can optionally specify:
format argumenttimezone argumentdefault which is the default value to return if the value is null; should be null or a parsable date time stringclassName the class to use if the property is typed mixed or any class that extends DateTimeInterface.If the property is typed with:
mixed or the DateTimeInterface, a DateTimeImmutable instance will be used if the className argument is not given.DateTimInterface, the className argument MUST be given.use League\Csv\Serializer;
use Carbon\CarbonImmutable;
use Carbon\CarbonInterface;
#[Serializer\MapCell(
options: [
'className' => CarbonImmutable::class //must be specified because CarbonInterface is an interface
]
)]
private CarbonInterface $observedOn;
Converts the value into a PHP array. You are required to specify the array shape for the conversion to happen. The class
provides three (3) shapes:
list converts the string using PHP explode function by default the separator option is ,;csv converts the string using CSV Reader class with its default delimiter and enclosure options, the escape character is not available as its usage is not recommended to improve interoperability;json converts the string using PHP json_decode function with its default options;The following are examples for each shape expected string value:
$array['list'] = "1,2,3,4"; //the string contains only a delimiter (shape list)
$array['csv'] = '"1","2","3","4"'; //the string contains delimiter and enclosure (shape csv)
$array['json'] = '{"foo":"bar"}'; //the string is a json string (shape json)
Here's an example for casting a string via the json shape.
use League\Csv\Serializer;
#[Serializer\MapCell(...
How can I help you explore Laravel packages today?