PHP Associative arrays to and from XML - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:16:49Z http://stackoverflow.com/feeds/question/99350 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml 2 PHP Associative arrays to and from XML Shabbyrobe 2008-09-19T03:39:11Z 2009-11-21T20:03:13Z <p>Is there an easy way to marshal a PHP associative array to and from XML? For example, if I have the following array:</p> <pre><code>$items = array("1", "2", array( "item3.1" =&gt; "3.1", "item3.2" =&gt; "3.2" "isawesome" =&gt; true ) ); </code></pre> <p>How would I turn it into something similar to the following XML in as few lines as possible, then back again:</p> <pre><code>&lt;items&gt; &lt;item&gt;1&lt;/item&gt; &lt;item&gt;2&lt;/item&gt; &lt;item&gt; &lt;item3_1&gt;3.1&lt;/item3_1&gt; &lt;item3_2&gt;3.2&lt;/item3_2&gt; &lt;isawesome&gt;true&lt;/isawesome&gt; &lt;/item&gt; &lt;/items&gt; </code></pre> <p>I don't really care if I have to change the array structure a bit or if the XML that comes out is different to the above example. I've been trying to work with PHP's <a href="http://au.php.net/manual/en/book.xmlreader.php" rel="nofollow">XMLReader</a> and <a href="http://au.php.net/manual/en/book.xmlwriter.php" rel="nofollow">XMLWriter</a>, but the documentation is so poor and the code I've produced as a consequence looks nothing like what I feel it should look like:</p> <pre><code>$xml = SomeXMLWriter::writeArrayToXml($items); $array = SomeXMLWriter::writeXmlToArray($xml); </code></pre> <p>Does it really have to be any harder than that to get a basic, raw XML dump of a PHP array without writing my own custom class?</p> <p>@<a href="http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml#99367">cruizer</a>, I try to avoid PEAR. In addition to the configuration headaches I've had with it, I've never stuck with any of the packages I've ever used from it.</p> <p>@<a href="http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml#99378">Oddmund</a> &amp; <a href="http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml#109886">Jared</a> Can you please provide some examples of using SimpleXML to do what I am trying to do?</p> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/99367#99367 0 Answer by cruizer for PHP Associative arrays to and from XML cruizer 2008-09-19T03:42:35Z 2008-09-19T03:42:35Z <p>Have you seen the PEAR package XML_Serializer?</p> <p><a href="http://pear.php.net/package/XML_Serializer" rel="nofollow">http://pear.php.net/package/XML_Serializer</a></p> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/99378#99378 9 Answer by Oddmund for PHP Associative arrays to and from XML Oddmund 2008-09-19T03:44:52Z 2008-09-19T03:44:52Z <p><a href="http://php.net/simplexml" rel="nofollow">SimpleXML</a> works great for your use.</p> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/99674#99674 1 Answer by Edward Hyde for PHP Associative arrays to and from XML Edward Hyde 2008-09-19T04:38:17Z 2008-09-19T04:38:17Z <p>Try Zend_Config and Zend Framework in general. </p> <p>I imagine it would be a 2 step process: array to Zend_Config, Zend_Config to XML.</p> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/100287#100287 2 Answer by DreamWerx for PHP Associative arrays to and from XML DreamWerx 2008-09-19T07:38:17Z 2008-09-19T07:38:17Z <p>Sounds like a job for SimpleXML. </p> <p>I would suggest a slightly different XML structure.. </p> <p>And wonder why you need to convert from an array -> XML and back.. If you can modify the array structure as you said why not just generate XML instead? If some piece of code already exists that takes that array configuration, just modify it to accept the XML instead. Then you have 1 data format/ input type, and don't need to convert at all..</p> <pre><code>&lt;items&gt; &lt;item id="1"/&gt; &lt;item id="2"/&gt; &lt;item id="3"&gt; &lt;subitems&gt; &lt;item id="3.1"/&gt; &lt;item id="3.2" isawesome="true"/&gt; &lt;/subitems&gt; &lt;/item&gt; &lt;/items&gt; </code></pre> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/100377#100377 1 Answer by SeanDowney for PHP Associative arrays to and from XML SeanDowney 2008-09-19T08:02:18Z 2008-09-19T08:02:18Z <p>I agree this is one area that PHP's documentation has dropped the ball, but for me I've always used the SimpleXML mixed with something like the xml2Array functions. The Xml you get from simpleXML isn't that hard to navigate with the help of a dumping function like print_r.</p> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/109886#109886 1 Answer by Jared for PHP Associative arrays to and from XML Jared 2008-09-21T00:38:53Z 2008-09-21T00:38:53Z <p>Seconding SimpleXML - I have used it extensively to do exactly what you're asking.</p> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/125761#125761 1 Answer by Nika for PHP Associative arrays to and from XML Nika 2008-09-24T06:57:52Z 2008-09-24T06:57:52Z <p>I've had some of these same issues, and so I created two classes:</p> <p><strong>bXml</strong></p> <p>A class that extends SimpleXml and corrects some of the problems it has. Like not being able to add CData nodes or Comment nodes. I also added some additional features, like using the php streams functionality to add child nodes <code>$oXml-&gt;AddChild("file:///user/data.xml")</code> or add XML string child nodes like <code>$oXml-&gt;AddChild("&lt;more&gt;&lt;xml&gt;yes&lt;/xml&gt;&lt;/more&gt;");</code> but basically I just wanted to fix the simpleXML problems.</p> <p><strong>bArray</strong></p> <p>I extended the ArrayObject class so that all array functionality could be object oriented and consistent, so you don't need to remember that array_walk operates on the array by reference, while array_filter operates on the array by value. So you can do things like <code>$oArray-&gt;flip()-&gt;Reverse()-&gt;Walk(/*callback*/);</code> then still access the value the same way you normally would like <code>$oArray[key]</code>.</p> <p>Both of the methods output themselves as Arrays and Xml so you can jump seamlessly between them. So you can <code>$oXml-&gt;AsArray();</code> or <code>$oArray-&gt;AsXml();</code> I found that it was easier to do this than to constantly pass things back and forth between array2xml or xml2array methods.</p> <p><a href="http://code.google.com/p/blibrary/source/browse/#svn/trunk/classes" rel="nofollow">http://code.google.com/p/blibrary/source</a></p> <p>Both classes are can be overridden to make a custom class of your choosing and can be used independently of one another.</p> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/633483#633483 0 Answer by Arup for PHP Associative arrays to and from XML Arup 2009-03-11T05:48:30Z 2009-03-11T05:48:30Z <p>Following class uses simplexml to achieve the same, you just need to loop through the array and call addchild of ximplexml.</p> <p><a href="http://snipplr.com/view.php?codeview&amp;id=3491" rel="nofollow">http://snipplr.com/view.php?codeview&amp;id=3491</a></p> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/1243839#1243839 1 Answer by Conrad for PHP Associative arrays to and from XML Conrad 2009-08-07T09:32:31Z 2009-08-07T09:32:31Z <p>For those of you not using the PEAR packages, but you've got PHP5 installed. This worked for me: </p> <pre><code> /** * Build A XML Data Set * * @param array $data Associative Array containing values to be parsed into an XML Data Set(s) * @param string $startElement Root Opening Tag, default fx_request * @param string $xml_version XML Version, default 1.0 * @param string $xml_encoding XML Encoding, default UTF-8 * @return string XML String containig values * @return mixed Boolean false on failure, string XML result on success */ public function buildXMLData($data, $startElement = 'fx_request', $xml_version = '1.0', $xml_encoding = 'UTF-8'){ if(!is_array($data)){ $err = 'Invalid variable type supplied, expected array not found on line '.__LINE__." in Class: ".__CLASS__." Method: ".__METHOD__; trigger_error($err); if($this-&gt;_debug) echo $err; return false; //return false error occurred } $xml = new XmlWriter(); $xml-&gt;openMemory(); $xml-&gt;startDocument($xml_version, $xml_encoding); $xml-&gt;startElement($startElement); /** * Write XML as per Associative Array * @param object $xml XMLWriter Object * @param array $data Associative Data Array */ function write(XMLWriter $xml, $data){ foreach($data as $key =&gt; $value){ if(is_array($value)){ $xml-&gt;startElement($key); write($xml, $value); $xml-&gt;endElement(); continue; } $xml-&gt;writeElement($key, $value); } } write($xml, $data); $xml-&gt;endElement();//write end element //Return the XML results return $xml-&gt;outputMemory(true); } </code></pre> http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/1776598#1776598 0 Answer by Argh for PHP Associative arrays to and from XML Argh 2009-11-21T20:03:13Z 2009-11-21T20:03:13Z <p>Can you please tell me an alternative...SimpleXML and using json_encode and json_decode results in me losing attributes on some of my nodes! </p> <p>See <a href="http://bonsai.php.net/bug.php?id=46309&amp;edit=1" rel="nofollow">http://bonsai.php.net/bug.php?id=46309&amp;edit=1</a></p> <p>SimpleXML was easy to use...json_encode and json_decode were easy to use... but ended up with me losing attribute information!!! What is an easy, but lossless, alternative???</p>