class FullTransformer extends FullTransformer

deprecated since version 2.3, to be removed in 3.0. Use {@link \Symfony\Component\Intl\DateFormatter\DateFormat\FullTransformer} instead.

Alias of {@link \Symfony\Component\Intl\DateFormatter\DateFormat\FullTransformer}.

Methods

__construct(string $pattern, string $timezone)

Constructor.

getTransformers()

Return the array of Transformer objects.

string
format(DateTime $dateTime)

Format a DateTime using ICU dateformat pattern.

string
formatReplace(string $dateChars, DateTime $dateTime)

Return the formatted ICU value for the matched date characters.

int
parse(DateTime $dateTime, string $value)

Parse a pattern based string to a timestamp value.

string
getReverseMatchingRegExp(string $pattern)

Retrieve a regular expression to match with a formatted value.

bool
isQuoteMatch(string $quoteMatch)

Check if the first char of a string is a single quote.

string
replaceQuoteMatch(string $quoteMatch)

Replaces single quotes at the start or end of a string with two single quotes.

Details

in FullTransformer at line line 45
__construct(string $pattern, string $timezone)

Constructor.

Parameters

string $pattern The pattern to be used to format and/or parse values
string $timezone The timezone to perform the date/time calculations

in FullTransformer at line line 79
Transformer[] getTransformers()

Return the array of Transformer objects.

Return Value

Transformer[] Associative array of Transformer objects (format char => Transformer)

in FullTransformer at line line 91
string format(DateTime $dateTime)

Format a DateTime using ICU dateformat pattern.

Parameters

DateTime $dateTime A DateTime object to be used to generate the formatted value

Return Value

string The formatted value

in FullTransformer at line line 112
string formatReplace(string $dateChars, DateTime $dateTime)

Return the formatted ICU value for the matched date characters.

Parameters

string $dateChars The date characters to be replaced with a formatted ICU value
DateTime $dateTime A DateTime object to be used to generate the formatted value

Return Value

string The formatted value

Exceptions

NotImplementedException When it encounters a not implemented date character

in FullTransformer at line line 142
int parse(DateTime $dateTime, string $value)

Parse a pattern based string to a timestamp value.

Parameters

DateTime $dateTime A configured DateTime object to use to perform the date calculation
string $value String to convert to a time value

Return Value

int The corresponding Unix timestamp

Exceptions

InvalidArgumentException When the value can not be matched with pattern

in FullTransformer at line line 179
string getReverseMatchingRegExp(string $pattern)

Retrieve a regular expression to match with a formatted value.

Parameters

string $pattern The pattern to create the reverse matching regular expression

Return Value

string The reverse matching regular expression with named captures being formed by the transformer index in the $transformer array

in FullTransformer at line line 217
bool isQuoteMatch(string $quoteMatch)

Check if the first char of a string is a single quote.

Parameters

string $quoteMatch The string to check

Return Value

bool true if matches, false otherwise

in FullTransformer at line line 229
string replaceQuoteMatch(string $quoteMatch)

Replaces single quotes at the start or end of a string with two single quotes.

Parameters

string $quoteMatch The string to replace the quotes

Return Value

string A string with the single quotes replaced