hrvthzslt/php-country-list
Composer 安装命令:
composer require hrvthzslt/php-country-list
包简介
Listing country alpha2, alpha3, numeric and isd codes
README 文档
README
Listing country alpha2, alpha3, numeric and isd codes with continent names and codes
Usage
Listing
Collect all countries
$phpCountryList = new \HrvthZslt\PhpCountryList\PhpCountryList(); $countries = $phpCountryList->getAllCountries();
$countries content:
...
156 => HrvthZslt\PhpCountryList\Models\Country {#1340
+name: "Netherlands"
+alpha2: "NL"
+alpha3: "NLD"
+numeric: "528"
+isd: 31
+continent: HrvthZslt\PhpCountryList\Models\Continent {#1341
+name: "Europe"
+code: "EU"
}
}
157 => HrvthZslt\PhpCountryList\Models\Country {#1342
+name: "New Caledonia"
+alpha2: "NC"
+alpha3: "NCL"
+numeric: "540"
+isd: 687
+continent: HrvthZslt\PhpCountryList\Models\Continent {#1343
+name: "Oceania"
+code: "OC"
}
}
...
Collect countries for continent
$phpCountryList = new \HrvthZslt\PhpCountryList\PhpCountryList(); $countries = $phpCountryList->getAllCountriesForContinent('NA');
Search
Search for country by alpha2, alpha3, numeric code or isd code
$country = $phpCountryList->getCountryByAlpha2('HM'); $country = $phpCountryList->getCountryByAlpha3('HMD'); $country = $phpCountryList->getCountryByNumericCode('334'); $country = $phpCountryList->getCountryByIsd(672);
These searches yields
HrvthZslt\PhpCountryList\Models\Country {#906
+name: "Heard Island and Mcdonald Islands"
+alpha2: "HM"
+alpha3: "HMD"
+numeric: "334"
+isd: 672
+continent: HrvthZslt\PhpCountryList\Models\Continent {#907
+name: "Antarctica"
+code: "AN"
}
}
Country instance
Check country continent, returns true or false
/** @var HrvthZslt\PhpCountryList\Models\Country $country */ $result = $country->inContinent('EU');
Convert to array
/** @var HrvthZslt\PhpCountryList\Models\Country $country */ $contryArray = $country->toArray();
$countryArray value
array:6 [
"name" => "Antarctica"
"alpha2" => "AQ"
"alpha3" => "ATA"
"numeric" => "010"
"isd" => 672
"continent" => array:2 [
"name" => "Antarctica"
"code" => "AN"
]
]
统计信息
- 总下载量: 563
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-23