php8.5
Home/ Manual/ gender / gender/ Gender\Gender::country

Gender\Gender::country

PHP function Edit on GitHub ✎

(PECL gender >= 0.8.0)

Get textual country representation

Description

Gender\Gender::country(int $country): array|false

Returns the textual representation of a country from a Gender class constant.

Parameters

country

A country ID specified by a Gender\Gender class constant.

Return Values

Returns an array with the short and full names of the country on success Falseforfailure.

Examples

Using Gender\Gender::country

php
$gender = new Gender\Gender;
var_dump($gender->country(Gender\Gender::BRITAIN));

The above example will output:

output
array(2) {
  'country_short' =>
  string(2) "UK"
  'country' =>
  string(13) "Great Britain"
}

Source: reference/gender/gender/country.xml · from the official PHP manual (php/doc-en)