( zephyrus | 2016. 09. 21., sze – 17:50 )

nálam ez működött:


<?php
$json_url = "http://bittrex.com/api/v1.1/public/getticker?market=btc-net";
$netcoin = json_decode(file_get_contents($json_url), true);
echo $netcoin['result']['Bid']." ".$netcoin['result']['Ask'];