update : 2015.11.03
php.shukuma.com

검색:
 
 
Get textual country representation

Gender\Gender::country

(PECL gender >= 0.8.0)

Gender\Gender::countryGet 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를 반환합니다.

예제

Example #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"
}