I need to read firebase JSON url in php and then display it. My bomb hit below .json data:
{"dDsdE4AlB7P5YYd4fWbYTQKCLPh1":{"email":"abhi@gmail.com","name":"abhishek"},
"z1ceiLhdh9YVu7lGnVvqDWoWHFH3":{"email":"ravi@gmail.com","name":"ravish"},
"ghg76JHG8jhkj7GHGJ763kjhFF45":{"email":"John@gmail.com","name":"John"}}
I can access the name field using the key value as shown below: -
$url = 'https://xxxx.firebaseio.com/users.json';
$data = file_get_contents($url);
$characters = json_decode($data);
echo $characters->dDsdE4AlB7P5YYd4fWbYTQKCLPh1->name;
Now, how to access the "name" field without knowing the key value? Since these keys are automatically generated by firebase and can be any values.
Thank you very much in advance!
source
share