is there some way to convert json to xml in PHP? I know that xml to json is very much possible.
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.
|
|
|
If you're willing to use the XML Serializer from PEAR, you can convert the JSON to a PHP object and then the PHP object to XML in two easy steps:
|
||||
|
|
|
It depends on how exactly you want you XML to look like. I would try a combination of
(Untested code - but you get the idea) |
|||
|
|
I combined the two earlier suggestions into:
|
|||
|
|
|
A native approch might be
|
|||
|
|
|
There's the Services_JSON extension from pear.php.net that does exactly what you need. You'll also need the SimpleXMLElement extension. Details and code sample here: http://www.ibm.com/developerworks/xml/library/x-xml2jsonphp/ EDIT: Sorry, I misread the question: my answer is for converting XML to JSON. |
|||
|
|