DateTimeToStringTransformer
class DateTimeToStringTransformer extends BaseDateTimeTransformer
Transforms between a date string and a DateTime object.
Properties
Methods
| __construct(string $inputTimezone = null, string $outputTimezone = null, string $format = 'Y-m-d H:i:s') Transforms a \DateTime instance to a string. | |
mixed | transform(DateTimeInterface $dateTime) Transforms a DateTime object into a date string with the configured format and timezone. | |
mixed | reverseTransform(mixed $value) Transforms a date string in the configured timezone into a DateTime object. | |
Details
__construct(string $inputTimezone = null, string $outputTimezone = null, string $format = 'Y-m-d H:i:s')
Transforms a \DateTime instance to a string.
Parameters
string | $inputTimezone | The name of the input timezone |
string | $outputTimezone | The name of the output timezone |
string | $format | The date format |
See also
\DateTime::format() | for supported formats |
Transforms a DateTime object into a date string with the configured format and timezone.
Parameters
Return Value
mixed | The value in the transformed representation |
Exceptions
Transforms a date string in the configured timezone into a DateTime object.
Parameters
mixed | $value | The value in the transformed representation |
Return Value
mixed | The value in the original representation |
Exceptions