i need to get data from array_keys the script i use in the server side:
PHP:
$friends = json_decode(file_get_contents(
'https://graph.facebook.com/me/friends?access_token=' .
$facebook->getAccessToken() ), true);
$friend_ids = array_keys($friends);
Dizinin veri yukarıdaki gibi bakmak:
{
"data": [
{
"name": "Tal Rozner",
"id": "554089741"
},
{
"name": "Daniel Kagan",
"id": "559274789"
},
{
"name": "ron cohen",
"id": "100001553261234"
}
]
}
i onunla çalışmak için bir dizi tüm bu verileri almak gerekiyor.
how can i do it ? tanks,