Skip to content

Instantly share code, notes, and snippets.

@batjaa
Created November 14, 2014 01:57
Show Gist options
  • Save batjaa/0c2982d9237a56b91aef to your computer and use it in GitHub Desktop.
Save batjaa/0c2982d9237a56b91aef to your computer and use it in GitHub Desktop.
letsrevolutionizetesting
<?php
$json = file_get_contents('http://letsrevolutionizetesting.com/challenge.json');
$jsonObj = json_decode($json);
while($jsonObj != null){
$json = str_replace("challenge", "challenge.json", $jsonObj->follow);
$json = file_get_contents($json);
var_dump($json);
echo "\n";
$jsonObj = json_decode($json);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment