Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

Possible Duplicate:
Parse Json in php

I was looking for this awnser but couldnt find it... so here is the question

How can I get the information from https://graph.facebook.com/XXXXXXX into vars, from this:

{
   "id": "XXXXXXX",
   "name": "Ricardo Capistran",
   "first_name": "Ricardo",
   "last_name": "Capistran",
   "username": "richycapy",
   "gender": "male",
   "locale": "es_LA"
}

Into this vars:

$id, $name, $firstname, $lastname, $username, $gender, $locale
share|improve this question

marked as duplicate by mario, Igy, Florent, bažmegakapa, Chathuranga Chandrasekara Oct 17 '12 at 7:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 4 down vote accepted
$data = json_decode($from);
extract($data);
  • JSON Decode - Takes a JSON encoded string and converts it into a PHP variable.
  • Extract - Import variables into the current symbol table from an array
share|improve this answer
Did Not understood :( – Ricardo Capistran Oct 17 '12 at 4:50
Ok, just got it... this was the correct idea... thanks!! :D – Ricardo Capistran Oct 17 '12 at 5:44

Not the answer you're looking for? Browse other questions tagged or ask your own question.