w pliku JSON. Jedyne co otrzymuję to null.
current_price
Daję tutaj wycinek z pliku JSON i kod którym próbuję uzyskać dostęp do wartości
current_price
{"results":[{"market_name":"FAMAS | Doomkitty (Minimal Wear)","avg_price_7_days":"0.75","avg_price_7_days_raw":0.74511,"avg_price_30_days":"0.74","avg_price_30_days_raw":0.74377,"link":"https://csgo.steamanalyst.com/id/1/","op_link":"https://track.steamanalyst.com/730/1/all/","current_price":"0.71","current_price_last_checked":"2018-03-16 09:52:57","ongoing_price_manipulation":"0"}
[php
]$prices = file_get_contents('prices.txt');
$prices = json_decode($prices, true);
$price = $prices['results'][$name]['current_price'];
[/php]