Locale::getRegion
PHP function
Edit on GitHub ✎
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
Gets the region for the input locale
Description
Oop
Locale::getRegion(string $locale): string|null
Procedural
locale_get_region(string $locale): string|null
Gets the region for the input locale.
Parameters
localeThe locale to extract the region code from
Return Values
The region subtag for the locale or null if not present
Return
Examples
locale_get_region() example
php
<?php
echo locale_get_region('de-CH-1901');
?>OO example
php
<?php
echo Locale::getRegion('de-CH-1901');
?>The above example will output:
output
CH