Buongiorno a tutti.
avrei un problema e non ne esco, mi spiego:
ho una file json che contiene questo tipo di dati
{"UTC":1587888711,"key1":"3464","key2":"2510","key3":"0","key4":"965","key5":"2510","key6":"22.00","key7":"1384","key8":"59.06"}
vorrei estrarre il valore di key8
allora ho fatto
$live=file_get_contents('/dev/shm/live.json');
$json_live=json_decode($live, true);
$TB=$json_live["key8"]
$lett_TB=curl_exec(curl_init($TB));
ma non funziona. credo sia un errore di sintassi, ma non capisco dove....
Mi aiuta qualcuno?