Skip to content

Instantly share code, notes, and snippets.

View ahmetserefoglu's full-sized avatar
💻
Work work ...

Ahmet Şerefoğlu ahmetserefoglu

💻
Work work ...
View GitHub Profile
@ozdemirburak
ozdemirburak / cities_of_turkey.json
Last active April 24, 2024 16:02
List of cities in Turkey presented in JSON format with the information of name, latitude, longitude, population and region.
[
{
"id": 1,
"name": "Adana",
"latitude": "37.0000",
"longitude": "35.3213",
"population": 2183167,
"region": "Akdeniz"
},
{
@ahmetserefoglu
ahmetserefoglu / array2json.php
Created August 11, 2016 12:00 — forked from ferdiunal/array2json.php
Ülkelerin İl, İlçeleri. Şimdilik Türkiye'yi ekleyebildim.
#!/usr/bin/env php
<?php
/**
* @author Ferdi ÜNAL
* @email ferdi@unal.pw
*/
$location = require "location.php";
$json = fopen('location.json', 'w');