Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 138058 программистов и 920 роботов. Сейчас ищут 770 программистов ...
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