PHP code example of quiec / trzone

1. Go to this page and download the library: Download quiec/trzone library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

quiec / trzone example snippets


print_r($trzone->getCity("İSTANBUL")->getCounty());

# Adresi yazalım.
$Adres = $trzone->getCity( # İl getiriyoruz.
        $trzone->searchPlaque("istanbul") # İstanbul'un plakasını arıyoruz. searchPlaque olmadan istanbul yazarsak bulamıyacaktır, çünkü veriler büyük harfledir #
    )
        ->getCounty("ADALAR") # ->getCounty(0) # İlçeyi getiriyoruz.
        ->getTown(FIRST) # İlk semt'i alıyoruz.
        ->getVillage(FIRST); # İlk mahalleyi seçiyoruz.

echo $Adres->getZipCode();