Gender\Gender
PHP Manual

Gender\Gender::country

(PECL gender >= 0.8.0)

Gender\Gender::countryGet textual country representation

Descrição

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

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

Parâmetros

country

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

Valor Retornado

Returns an array with the short and full names of the country on success ou FALSE em caso de falha.

Exemplos

Exemplo #1 Using Gender\Gender::country()

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

O exemplo acima irá imprimir:

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


Gender\Gender
PHP Manual