class TimeZoneTransformer extends TimeZoneTransformer
deprecated
since version 2.3, to be removed in 3.0. Use {@link \Symfony\Component\Intl\DateFormatter\DateFormat\TimeZoneTransformer} instead.
Alias of {@link \Symfony\Component\Intl\DateFormatter\DateFormat\TimeZoneTransformer}.
Methods
string | format(DateTime $dateTime, int $length) Format a value using a configured DateTime as date/time source. | from TimeZoneTransformer |
string | getReverseMatchingRegExp(int $length) Returns a reverse matching regular expression of a string generated by format(). | from TimeZoneTransformer |
array | extractDateOptions(string $matched, int $length) Extract date options from a matched value returned by the processing of the reverse matching regular expression. | from TimeZoneTransformer |
static string | getEtcTimeZoneId(string $formattedTimeZone) Get an Etc/GMT timezone identifier for the specified timezone. | from TimeZoneTransformer |
Details
string format(DateTime $dateTime, int $length)
Format a value using a configured DateTime as date/time source.
string getReverseMatchingRegExp(int $length)
Returns a reverse matching regular expression of a string generated by format().
array extractDateOptions(string $matched, int $length)
Extract date options from a matched value returned by the processing of the reverse matching regular expression.
static string getEtcTimeZoneId(string $formattedTimeZone)
Get an Etc/GMT timezone identifier for the specified timezone.
The PHP documentation for timezones states to not use the 'Other' time zones because them exists "for backwards compatibility". However all Etc/GMT time zones are in the tz database 'etcetera' file, which indicates they are not deprecated (neither are old names).
Only GMT, Etc/Universal, Etc/Zulu, Etc/Greenwich, Etc/GMT-0, Etc/GMT+0 and Etc/GMT0 are old names and are linked to Etc/GMT or Etc/UTC.
Please login to continue.