is there some way to convert json to xml in PHP? I know that xml to json is very much possible.
|
feedback
|
|
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:
| ||||
|
feedback
|
|
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) | |||
feedback
|
|
I combined the two earlier suggestions into:
| |||
|
feedback
|
|
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. | |||
|
feedback
|