Skip to content

cURL ile parsel sorgulama yapabilen basit bir PHP Sınıfıdır.

License

Notifications You must be signed in to change notification settings

hamzaemre/class.tkgm.php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

class.tkgm.php

cURL ile parsel sorgulama yapabilen basit bir PHP Sınıfıdır.

Kurulum

composer require hamzaemre/class.tkgm.php

Örnek kullanımı

Diğer örnekleri proje içerisinde inceleyebilirsiniz.

İl listesini çekmek için:

<?php

require_once 'vendor/autoload.php';

$parsel_sorgulama = new ParselSorgulama();
$iller = $parsel_sorgulama->ilListesiGetir();

// il listesini getirir.
print_r($iller);

?>

İlçe listesini çekmek için:

<?php

require_once 'vendor/autoload.php';

$parsel_sorgulama = new ParselSorgulama();
$ilceler = $parsel_sorgulama->ilceListeGetir();

// il listesini getirir.
print_r($ilceler);

?>

Mahalle listesini çekmek için:

<?php

require_once 'vendor/autoload.php';

$parsel_sorgulama = new ParselSorgulama();
$mahalleler = $parsel_sorgulama->mahalleListeGetir();

// il listesini getirir.
print_r($mahalleler);

?>

Parsel sorgulaması yapmak için:

<?php

require_once 'vendor/autoload.php';

$parsel_sorgulama = new ParselSorgulama();
$parsel_bilgisi = $parsel_sorgulama->parselBilgiGetir(169241,201);
echo '<pre>';
  print_r($parsel_bilgisi);
echo '</pre>';

?>

About

cURL ile parsel sorgulama yapabilen basit bir PHP Sınıfıdır.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages