Guest User

Untitled

a guest
Dec 9th, 2011
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. ini_set('display_errors',1);
  3. error_reporting(E_ALL);
  4.  
  5. $json = file_get_contents("http://www.reddit.com/by_id/t3_n62lf.json");
  6. $json_output = json_decode($json, TRUE);
  7.  
  8. /*echo "<pre>";
  9. print_r($json_output);
  10. echo "</pre>";*/
  11.  
  12.  
  13. echo $json_output['score'];
  14.  
  15. ?>
  16.  
  17.  
Add Comment
Please, Sign In to add comment