Gender\Gender::country

(PECL gender >= 0.8.0)

Gender\Gender::countryGet textual country representation

Beschreibung

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

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

Parameter-Liste

country

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

Rückgabewerte

Returns an array with the short and full names of the country on success Bei einem Fehler wird false zurückgegeben..

Beispiele

Beispiel #1 Using Gender\Gender::country()

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

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