(PECL gender >= 0.8.0)
Gender\Gender::country — Get textual country representation
$country
) : array|falseReturns 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
sau false
în cazul eșecului.
Example #1 Using Gender\Gender::country()
$gender = new Gender\Gender;
var_dump($gender->country(Gender\Gender::BRITAIN));
Exemplul de mai sus va afișa:
array(2) { 'country_short' => string(2) "UK" 'country' => string(13) "Great Britain" }