php8.5
Home/ Manual/ intl / locale/ Locale::getRegion

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

locale

The 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

See Also

Source: reference/intl/locale/get-region.xml · from the official PHP manual (php/doc-en)