phine / country
This package is abandoned and no longer maintained.
No replacement package was suggested.
A PHP library for country and subdivision data.
1.1.0
2015-04-21 03:50 UTC
Requires
- php: >=5.3.3
- phine/exception: ~1.0
Requires (Dev)
- league/phpunit-coverage-listener: ~1.0
- phine/test: ~1.0
This package is not auto-updated.
Last update: 2021-12-07 01:41:25 UTC
README
A PHP library for country and subdivision data.
Usage
use Phine\Country\Loader\Loader; $loader = new Loader(); // returns data for "US" $country = $loader->loadCountry('US'); echo $country->getAlpha2Code(); // "US" echo $country->getAlpha3Code(); // "USA" echo $country->getLongName(); // "United States of America" echo $country->getNumericCode(); // "840" echo $country->getShortName(); // "United States" // returns all countries $countries = $loader->loadCountries(); $country = $countries['US']; // returns data for "US-CA" $subdivision = $loader->loadSubdivision('US-CA'); echo $subdivision->getCode(); // "US-CA" echo $subdivision->getName(); // "California" // returns all subdivisions $subdivisions = $loader->loadSubdivisions(); $subdivision = $subdivisions['US-CA']; // returns all subdivisions for a specific country $subdivisions = $loader->loadSubdivisions('US');
Requirement
- PHP >= 5.3.3
- Phine Exception >= 1.0
Installation
Via Composer:
$ composer require "phine/country=~1.0"
Documentation
You can find the documentation in the docs/
directory.
License
This library is available under the MIT license.