Gender\Gender::country
(PECL gender >= 0.8.0)
Gender\Gender::country — Get textual country representation
Descrierea
public array Gender\Gender::country
( integer
$country
)Returns the textual representation of a country from a Gender class constant.
Parametri
-
country -
A country ID specified by a Gender\Gender class constant.
Valorile întoarse
Returns an array with the short and full names of the country on success
sau FALSE în cazul eșecului.
Exemple
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"
}
There are no user contributed notes for this page.
