1. Go to this page and download the library: Download mlocati/comuni-italiani library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
useMLocati\ComuniItaliani\Finder;
$finder = new Finder();
$province = $finder->getProvinceByVehicleCode('BG');
$municipalities = $finder->findMunicipalitiesByName('romano', false, $province);
// The same applies to findRegionsByName and findProvincesByName
if ($territory1->isSame($territory2)) {
echo'Same territory';
}
if ($territory1->isContainedIn($territory2)) {
echo"{$territory1} is contained in {$territory2}";
}
if ($territory1->isSameOrContainedIn($territory2)) {
echo"{$territory1} is contained in {$territory2} (or they are the same)";
}
// $region is an instance of Region hereif ($region->contains($territory)) {
echo"{$region} contains {$terrtory}";
}
if ($region->isSameOrContains($territory)) {
echo"{$region} is same (or contains) {$terrtory}";
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.