Advertisement
Guest User

Untitled

a guest
Feb 5th, 2014
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. $ cat a.json
  2. {"Scientists Extend Einstein's ...... }}
  3. $ cat a.php
  4. <?php
  5. // This doesnt't work:
  6. // echo json_decode(file_get_contents("a.json"))
  7.  
  8. print_r(json_decode(file_get_contents("a.json")));
  9.  
  10. ?>
  11. $ php --version
  12. PHP 5.5.3-1ubuntu2.1 (cli) (built: Dec 12 2013 04:24:35)
  13. Copyright (c) 1997-2013 The PHP Group
  14. Zend Engine v2.5.0, Copyright (c) 1998-2013 Zend Technologies
  15. with Zend OPcache v7.0.3-dev, Copyright (c) 1999-2013, by Zend Technologies
  16. $ php a.php
  17. stdClass Object
  18. (
  19. [Scientists Extend Einstein&#39;s Relativity to the Universe&#39;s First Moments. January 9 . Fairly Simple Math Could Bridge Quantum Mechanics and General Relativity.] => stdClass Object
  20. (
  21. [39] => 4
  22. [9] => 3
  23. [Universe&#] => 4
  24. [Extend] => 2
  25. [fairli] => 2
  26. [Could] => 3
  27. [Bridg] => 3
  28. [Moment] => 2
  29. [.] => 1
  30. [to] => 3
  31. [s] => 2
  32. [scientist] => 3
  33. [Rel] => 3
  34. [Einstein&#] => 2
  35. [januari] => 2
  36. [;] => 1
  37. [Simpl] => 3
  38. [the] => 4
  39. [Math] => 3
  40. [First] => 2
  41. )
  42. .........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement