This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"Marmara", | |
"Ege", | |
"Akdeniz", | |
"İç Anadolu", | |
"Karadeniz", | |
"Doğu Anadolu", | |
"Güneydoğu Anadolu" | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"1": [ | |
"Aladağ", | |
"Ceyhan", | |
"Çukurova", | |
"Feke", | |
"İmamoğlu", | |
"Karaisalı", | |
"Karataş", | |
"Kozan", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"1": { "name": "Adana", "region": "Akdeniz" }, | |
"2": { "name": "Adıyaman", "region": "Güneydoğu Anadolu" }, | |
"3": { "name": "Afyonkarahisar", "region": "Ege" }, | |
"4": { "name": "Ağrı", "region": "Doğu Anadolu" }, | |
"5": { "name": "Amasya", "region": "Karadeniz" }, | |
"6": { "name": "Ankara", "region": "İç Anadolu" }, | |
"7": { "name": "Antalya", "region": "Akdeniz" }, | |
"8": { "name": "Artvin", "region": "Karadeniz" }, | |
"9": { "name": "Aydın", "region": "Ege" }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"plaka":"01","il":"ADANA","ilce":"Merkez","muhasebe_birimi_kodu":"1250","vergi_dairesi":"Adana \u0130htisas Vergi Dairesi M\u00fcd\u00fcrl\u00fc\u011f\u00fc"},{"plaka":"01","il":"ADANA","ilce":"Merkez","muhasebe_birimi_kodu":"1251","vergi_dairesi":"5 Ocak Vergi Dairesi M\u00fcd\u00fcrl\u00fc\u011f\u00fc"},{"plaka":"01","il":"ADANA","ilce":"Merkez","muhasebe_birimi_kodu":"1252","vergi_dairesi":"Y\u00fcre\u011fir Vergi Dairesi M\u00fcd\u00fcrl\u00fc\u011f\u00fc"},{"plaka":"01","il":"ADANA","ilce":"Merkez","muhasebe_birimi_kodu":"1253","vergi_dairesi":"Seyhan Vergi Dairesi M\u00fcd\u00fcrl\u00fc\u011f\u00fc"},{"plaka":"01","il":"ADANA","ilce":"Merkez","muhasebe_birimi_kodu":"1254","vergi_dairesi":"Ziyapa\u015fa Vergi Dairesi M\u00fcd\u00fcrl\u00fc\u011f\u00fc"},{"plaka":"01","il":"ADANA","ilce":"Merkez","muhasebe_birimi_kodu":"1255","vergi_dairesi":"\u00c7ukurova Vergi Dairesi M\u00fcd\u00fcrl\u00fc\u011f\u00fc"},{"plaka":"01","il":"ADANA","ilce":"Ceyhan","muhasebe_birimi_kodu":"1201","vergi_dairesi":"Ceyhan V |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function multipleFiles($files_post) { | |
$files = []; | |
$keys = array_keys($files_post); | |
for($i = 0; $i < count($files_post["name"]); $i++) { | |
foreach($keys as $key) { | |
$files[$i][$key] = $files_post[$key][$i]; | |
} | |
} |