Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
An associative array is an abstract data type composed of a collection of unique keys mapped to a collection of values.
0
votes
1answer
61 views
How can I parse JSON output from Facebook php graph api?
I have the this simple code from the example sdk facebook:
if ($user) {
try {
$user_profile = $facebook->api('/me/friends');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
...
0
votes
3answers
3k views
JSON to PHP Associative array
Hey guys, would any of you know a good way to put this into an associative array . I have tried json_decode but found it to not be much help and:
preg_match_all('|"name": "(.*?)",|',$json,$matches);
...