Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18184 программиста и 1605 роботов. Сейчас ищет 1281 программист ...
Gender\Gender::country - Get textual country representation
Вернуться к: Gender\Gender
Gender\Gender::country
(PECL gender >= 0.8.0)
Gender\Gender::country — Get 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" }
Вернуться к: Gender\Gender