Hello World in PHP - GeekyTheory/Automatic-API-REST GitHub Wiki

Hello World in PHP

<?php
    //Get JSON from Automatic Api Rest
    $apiLink = "http://localhost/api/get/city/";
    $json = file_get_contents($apiLink);
    //Decode JSON
    $json = json_decode($json);
    //Print
    for($i=0;$i<count($json);$i++){
        echo $json[$i].ID;
    }
⚠️ **GitHub.com Fallback** ⚠️