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.

I was thinking, it might be able to use and process XML data if i can run the XML through a func to validate it (against a schema) then convert the XML to json for easy object access? How can i convert XML to JSON easily?

share|improve this question

2 Answers

up vote 1 down vote accepted

http://www.ibm.com/developerworks/xml/library/x-xml2jsonphp/

share|improve this answer
The best answer i have ever seen. No words, reference link, a great explanation and working code ;D – An employee Oct 5 '09 at 19:05
$json = json_encode(simplexml_load_string($xmlString));
$array = json_decode($json,true);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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