PHP Associative arrays to and from XML - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:16:49Zhttp://stackoverflow.com/feeds/question/99350http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml2PHP Associative arrays to and from XML Shabbyrobe2008-09-19T03:39:11Z2009-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" => "3.1",
"item3.2" => "3.2"
"isawesome" => 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><items>
<item>1</item>
<item>2</item>
<item>
<item3_1>3.1</item3_1>
<item3_2>3.2</item3_2>
<isawesome>true</isawesome>
</item>
</items>
</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> & <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#993670Answer by cruizer for PHP Associative arrays to and from XML cruizer2008-09-19T03:42:35Z2008-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#993789Answer by Oddmund for PHP Associative arrays to and from XML Oddmund2008-09-19T03:44:52Z2008-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#996741Answer by Edward Hyde for PHP Associative arrays to and from XML Edward Hyde2008-09-19T04:38:17Z2008-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#1002872Answer by DreamWerx for PHP Associative arrays to and from XML DreamWerx2008-09-19T07:38:17Z2008-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><items>
<item id="1"/>
<item id="2"/>
<item id="3">
<subitems>
<item id="3.1"/>
<item id="3.2" isawesome="true"/>
</subitems>
</item>
</items>
</code></pre>
http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/100377#1003771Answer by SeanDowney for PHP Associative arrays to and from XML SeanDowney2008-09-19T08:02:18Z2008-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#1098861Answer by Jared for PHP Associative arrays to and from XML Jared2008-09-21T00:38:53Z2008-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#1257611Answer by Nika for PHP Associative arrays to and from XML Nika2008-09-24T06:57:52Z2008-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->AddChild("file:///user/data.xml")</code> or add XML string child nodes like <code>$oXml->AddChild("<more><xml>yes</xml></more>");</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->flip()->Reverse()->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->AsArray();</code> or <code>$oArray->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#6334830Answer by Arup for PHP Associative arrays to and from XML Arup2009-03-11T05:48:30Z2009-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&id=3491" rel="nofollow">http://snipplr.com/view.php?codeview&id=3491</a></p>
http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/1243839#12438391Answer by Conrad for PHP Associative arrays to and from XML Conrad2009-08-07T09:32:31Z2009-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->_debug) echo $err;
return false; //return false error occurred
}
$xml = new XmlWriter();
$xml->openMemory();
$xml->startDocument($xml_version, $xml_encoding);
$xml->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 => $value){
if(is_array($value)){
$xml->startElement($key);
write($xml, $value);
$xml->endElement();
continue;
}
$xml->writeElement($key, $value);
}
}
write($xml, $data);
$xml->endElement();//write end element
//Return the XML results
return $xml->outputMemory(true);
}
</code></pre>
http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml/1776598#17765980Answer by Argh for PHP Associative arrays to and from XML Argh2009-11-21T20:03:13Z2009-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&edit=1" rel="nofollow">http://bonsai.php.net/bug.php?id=46309&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>