How do i convert an associate array to an XML string? I found this but get the error 'Call to a member function addChild() on a non-object' when running the line
$node = $xml->addChild($key);
|
|
How do i convert an associate array to an XML string? I found this but get the error 'Call to a member function addChild() on a non-object' when running the line
|
||
|
|
Use the PHP Document Object Model:
|
|||
|
|
|
|
Did you initialize the $xml object? That's probably your problem. |
||||
|
|
|
Its pretty similar to how you would do something like this:
You can't use $result as an array, but you can foreach or while through the different entries. |
||
|
|
|
|
PEAR's XML_Serialize is pretty good if you want a easy solution. Doing the DOM manually is arguably faster. |
||
|
|
ArrayToXML::toXML()? – Jonathan Fingland Oct 6 at 15:13