Skip to content

Instantly share code, notes, and snippets.

@mattronix
Last active April 16, 2016 22:35
Show Gist options
  • Save mattronix/af1d60beb67cec0971fd3c8c96b43431 to your computer and use it in GitHub Desktop.
Save mattronix/af1d60beb67cec0971fd3c8c96b43431 to your computer and use it in GitHub Desktop.
SpaceState API PHP
<?php
function SpaceState($url){
$json = file_get_contents($url);
$json_data = json_decode($json);
$json_data->{'open'};
if ($json_data->{'open'}) {
return "Open";
}
if ($json_data->{'open'} == false) {
return "Closed";
}
}
print_r(SpaceState("http://techinc.nl/space/spacestate.json"))
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment