Skip to content

Commit

Permalink
Örnekler eklendi!
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzaemre authored Sep 15, 2017
1 parent 8af6336 commit 8ffc6de
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ornekler/ilListesi.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

require __DIR__ . '/../vendor/autoload.php';

$parsel_sorgulama = new ParselSorgulama();

$il_listesi = $parsel_sorgulama->ilListesiGetir();

echo '<pre>';
print_r($il_listesi);
echo '</pre>';

?>
13 changes: 13 additions & 0 deletions ornekler/ilceListesi.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

require __DIR__ . '/../vendor/autoload.php';

$parsel_sorgulama = new ParselSorgulama();

$ilce_listesi = $parsel_sorgulama->ilceListeGetir(23);

echo '<pre>';
print_r($ilce_listesi);
echo '</pre>';

?>
13 changes: 13 additions & 0 deletions ornekler/mahalleListesi.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

require __DIR__ . '/../vendor/autoload.php';

$parsel_sorgulama = new ParselSorgulama();

$mahalle_listesi = $parsel_sorgulama->mahalleListeGetir(687);

echo '<pre>';
print_r($mahalle_listesi);
echo '</pre>';

?>
13 changes: 13 additions & 0 deletions ornekler/parselSorgula.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

require __DIR__ . '/../vendor/autoload.php';

$parsel_sorgulama = new ParselSorgulama();

$parsel_bilgisi = $parsel_sorgulama->parselBilgiGetir(169241,201);

echo '<pre>';
print_r($parsel_bilgisi);
echo '</pre>';

?>

0 comments on commit 8ffc6de

Please sign in to comment.