We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
<?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; }