Guest User

Untitled

a guest
Jan 19th, 2018
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <?php
  2.  
  3. $url = "https://www.coinspot.com.au/pubapi/latest";
  4.  
  5. $getContent = file_get_contents($url);
  6.  
  7. $json = json_decode($getContent, true);
  8.  
  9. echo $json["last"];
  10.  
  11. ?>
Add Comment
Please, Sign In to add comment