eugenecooper / world-locations
Allows to retrieve all world's countries, cities and regions
v0.1.3
2017-01-14 06:15 UTC
Requires
- php: ^5.6|^7.0
- vladkens/vk: 0.1.9
This package is auto-updated.
Last update: 2024-11-05 06:04:56 UTC
README
This simple package allows to retrieve all world's countries, a certain country regions and cities, etc. The code is relying on vk.com public API, so if you'll need to make too much requests you should cache results or save them to your database.
Install
Via Composer
$ composer require eugenecooper/world-locations
Usage
$locations = new \EugeneCooper\WorldLocations\Locations; // Obtain an array of all world's countries $locations->getCountries(); // Obtain an array of all country regions ($country_id can be obtained with the method above) $locations->getCountryRegions($country_id); // Obtain an array of all country cities $locations->getCountryCities($country_id); // Obtain an array of all country region's cities ($region_id can be obtained with methods above) $locations->getRegionCities($country_id, $region_id);
License
The MIT License (MIT).