$json = file_get_contents('https://melodyn.ru/test.json');
$data = json_decode($json, true);
echo $data['firstName'];
$json = '{"firstName":"Виталий","lastName":"Слюсар","address":{"country":"Украина","city":"Днепропетровск","homeNumber":22}, "phoneNumbers":["+380 66 12 34 567","+380 98 88 88 868"]}';
$data = json_decode($json, true);
echo $data['firstName'];