update : 2015.11.03
php.shukuma.com검색:
|
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. 인수
반환값
Returns an array with the short and full names of the country on success
실패 시 예제
Example #1 Using Gender\Gender::country()
$gender = new Gender\Gender; 위 예제의 출력: array(2) { 'country_short' => string(2) "UK" 'country' => string(13) "Great Britain" } |