What is the best way to take a given PHP object and serialize it as XML? I am looking at simple_xml and I have used it to parse XML into objects, but it isn't clear to me how it works the other way around.
|
|
|
|
|
|
|
take a look at PEAR's XML_Serializer package. I've used it with pretty good results. You can feed it arrays, objects etc and it will turn them into XML. It also has a bunch of options like picking the name of the root node etc. Should do the trick |
||
|
|
|
|
use WDDX: http://uk.php.net/manual/en/wddx.examples.php (if this extension is installed) it's dedicated to that: |
||
|
|
|
|
I didn't do any XML <=> PHP-Objects conversion but if you just want a way to serialize your php obejcts then it is very simple, you can use php built-in json_encode() and json_decode() these functions take care of everything and your php objects are serialized as JSON. These functions are available as of PHP 5.2.0 and above, if you use an older version then use PECL json:1.2.0-1.2.1 |
||
|
|
|
|
Well, while a little dirty, you could always run a loop on the object's properties...
Using fopen/fwrite/fclose you could generate an XML doc with the $_xml variable as content. It's ugly, but it would work. |
||
|
|
|
Use a dom function to do it: http://www.php.net/manual/en/function.dom-import-simplexml.php Import the SimpleXML object and then save. The above link contains an example. :) In a nutshell:
|
||||||||||
|
