BTCを入れたら名前を取得するには?json coinmarketcapで名前を取得するには? PHP
$url = file_get_contents(https://api.coinmarketcap.com/v1/ticker/);
$json = json_decode($url,true);
と
[
{
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
},
{
},
{
"id": "ethereum",
"name": "Ethereum",
"symbol": "ETH",
},
{
"id": "bitcoin-cash",
"name": "Bitcoin Cash",
"symbol": "BCH",
},
]
などを引き起こします。 私は「BTC」 を入れて、出力=「ビットコイン」
または「ETH」 出力=「イーサリアム」