This project provides data for provinces/states and cities of various countries. Currently, the following countries are included:
- Iran: Detailed list of provinces and cities.
- Germany: Comprehensive list of federal states (Bundesländer) and their cities.
If you use languages other than PHP and need these lists, you can access the JSON and MySQL Information through this repository.
composer require mohammad-prb/provinces-and-cities-composer
<?php
use ProvincesAndCities\Countries;
Countries::$iran['main'] // all provinces and main cities
Countries::$iran['all'] // all provinces and all cities
Countries::$iran['main'][7] = array(
"id" => 8,
"name" => "تهران",
"tel_prefix" => "021",
"cities" => array(
"اسلامشهر",
"بومهن",
"پاكدشت",
"تهران",
"چهاردانگه",
"دماوند",
"رودهن",
"ري",
"شريف آباد",
"شهر رباط كريم",
"شهر شهريار",
"فشم",
"فيروزكوه",
"قدس",
"كهريزك",
"لواسان بزرگ",
"ملارد",
"ورامين"
)
)
The project is designed to be scalable, and we plan to add data for other countries in the future. If you have suggestions for specific countries, feel free to contribute or create an issue.
We welcome contributions to expand this project. If you'd like to add data for a new country or improve existing data, please create a pull request.
If this project was helpful, please consider giving it a star. Your support helps us grow!