Skip to content

Instantly share code, notes, and snippets.

@grandsilence
Created October 15, 2019 12:22
Show Gist options
  • Save grandsilence/19b5cb2d4818e214b9efb532ed468a07 to your computer and use it in GitHub Desktop.
Save grandsilence/19b5cb2d4818e214b9efb532ed468a07 to your computer and use it in GitHub Desktop.
Get currency rates from floatrates API
<?php
public static $currencies = false;
public static function getCurrenciesJson()
{
if (!self::$currencies) {
$json = json_decode(system::GET('http://www.floatrates.com/daily/rub.json'), true);
self::$currencies = !empty($json) ? $json : false;
}
return self::$currencies;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment