class Locale extends Locale
deprecated
since version 2.3, to be removed in 3.0. Use {@link \Locale} and {@link \Symfony\Component\Intl\Intl} instead.
Helper class for dealing with locale strings.
Methods
static array | getDisplayCountries(string $locale) Returns the country names for a locale. | |
static array | getCountries() Returns all available country codes. | |
static array | getDisplayLanguages(string $locale) Returns the language names for a locale. | |
static array | getLanguages() Returns all available language codes. | |
static array | getDisplayLocales(string $locale) Returns the locale names for a locale. | |
static array | getLocales() Returns all available locale codes. | |
static string|null | getIntlIcuVersion() Returns the ICU version as defined by the intl extension. | |
static string|null | getIntlIcuDataVersion() Returns the ICU Data version as defined by the intl extension. | |
static string | getIcuDataVersion() Returns the ICU data version that ships with Symfony. If the environment variable USEINTLICUDATAVERSION is defined, it will try use the ICU data version as defined by the intl extension, if available. | |
static string | getIcuDataDirectory() Returns the directory path of the ICU data that ships with Symfony. |
Details
static array getDisplayCountries(string $locale)
Returns the country names for a locale.
static array getCountries()
Returns all available country codes.
static array getDisplayLanguages(string $locale)
Returns the language names for a locale.
static array getLanguages()
Returns all available language codes.
static array getDisplayLocales(string $locale)
Returns the locale names for a locale.
static array getLocales()
Returns all available locale codes.
static string|null getIntlIcuVersion()
Returns the ICU version as defined by the intl extension.
static string|null getIntlIcuDataVersion()
Returns the ICU Data version as defined by the intl extension.
static string getIcuDataVersion()
Returns the ICU data version that ships with Symfony. If the environment variable USEINTLICUDATAVERSION is defined, it will try use the ICU data version as defined by the intl extension, if available.
static string getIcuDataDirectory()
Returns the directory path of the ICU data that ships with Symfony.
Please login to continue.