Подскажите, пожалуйста, как добраться до содержимого?
//курс коины - доллар
function price_other_usd($curr) {
$decoded_json_other_coin = json_decode(file_get_contents("https://api.coingecko.com/api/v3/coins/$curr"), TRUE);
$js = array_column($decoded_json_other_coin, 'current_price', 'id');
return $js[$curr];
}
$btc2_usd = price_other_usd("bitcoin");
echo $decoded_json_other_coin;
echo '---- START2 USD ----<br /><br />';
echo 'BTC: '.$btc2_usd.'<br />';
Получаю пустую строку, видимо не правильно ищу результат
Пример ответа
https://api.coingecko.com/api/v3/coins/bitcoin