Gender\Gender::country

(PECL gender >= 0.8.0)

Gender\Gender::countryGet textual country representation

Опис

public array Gender\Gender::country ( integer $country )

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

Параметри

country

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

Значення, що повертаються

Returns an array with the short and full names of the country on success або FALSE в разі помилки.

Приклади

Приклад #1 Using Gender\Gender::country()

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

Наведений вище приклад виведе:

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

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top