Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2.  
  3. $type = 'json';
  4. $key = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'; // PARTNER KEY
  5.  
  6. $content = file_get_contents('https://partnertools.bongous.com/currency/exchanges.' . $contentType . '?key=' . $key);
  7.  
  8. $data = json_decode($content);
  9.  
  10. /**
  11.  *
  12.  * {
  13.     "AED": [{
  14.             "code": "AED",
  15.             "value": "1"
  16.         }, {
  17.             "code": "ALL",
  18.             "value": "28.1204"
  19.         }, {
  20.             "code": "ANG",
  21.             "value": "0.4956"
  22.         }
  23.         .
  24.         .
  25.         .
  26.     }
  27.  *
  28.  */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement