Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering if a function capable of converting an associative array to an XML document exists in PHP (or some widely available PHP library).

I've searched quite a lot and could only find functions that do not output valid XML. I believe that the array I'm testing them on is correctly constructed, since it can be correctly used to generate a JSON document using json_encode. However, it is rather large and it is nested on four levels, which might explain why the functions I've tried so far fail.

Ultimately, I will write the code to generate the XML myself but surely there must be a faster way of doing this.

share|improve this question

4 Answers

up vote 3 down vote accepted

No. At least there is no such in-built function. It's not a probrem to write it at all.

surely there must be a faster way of doing this

How do you represent attribute in array? I can assume keys are tags and values are this tags content.

Basic PHP Array -> JSON works just fine, cause those structure is... well... almost the same.

share|improve this answer
1  
JSON objects and PHP Arrays are very similar in nature; XML is a whole different animal, primarily because (a) attribute-vs-value and (b) multiple nodes with the same name (i.e., numerically indexed array, but then how do you choose the name?); personally, I don't think you can make a one-size-fits-all solution above the project/application scope. – Dereleased Apr 20 '11 at 15:51
Of course! That's exactly what I meant. – Nemoden Apr 20 '11 at 15:52
1  
Well, you are right. There is no silver bullet. So I ended up constructing my own XML using DOMDocument. Come to think of it, this approach is also more fun. – Epicurus Apr 29 '11 at 15:36

I realize I am a Johnny-Come-Lately here, but I was working with the VERY same problem -- and the tutorials I found out there would almost (but not quite upon unit testing) cover it.

After much frustration and research, here is what I cam up with

XML To Assoc. Array:

From http://www.php.net/manual/en/simplexml.examples-basic.php

json_decode( json_encode( simplexml_load_string( $string ) ), TRUE );

Assoc. Array to XML

notes:

  • XML attributes are not handled
  • Will also handle nested arrays with numeric indices (which are not valid XML!)

From http://www.devexp.eu/2009/04/11/php-domdocument-convert-array-to-xml/

/// Converts an array to XML
/// - http://www.devexp.eu/2009/04/11/php-domdocument-convert-array-to-xml/
/// @param  <array> $array  The associative array you want to convert; nested numeric indices are OK!
function   getXml( array $array )  {

    $array2XmlConverter  = new XmlDomConstructor('1.0', 'utf-8');
    $array2XmlConverter->xmlStandalone   = TRUE;
    $array2XmlConverter->formatOutput    = TRUE;

    try {
        $array2XmlConverter->fromMixed( $array );
        $array2XmlConverter->normalizeDocument ();
        $xml    = $array2XmlConverter->saveXML();
//        echo "\n\n-----vvv start returned xml vvv-----\n";
//        print_r( $xml );
//        echo "\n------^^^ end returned xml ^^^----\n"
        return  $xml;
    }
    catch( Exception $ex )  {
//        echo "\n\n-----vvv Rut-roh Raggy! vvv-----\n";
//        print_r( $ex->getCode() );     echo "\n";
//        print_r( $->getMessage() );
//        var_dump( $ex );
//        echo "\n------^^^ end Rut-roh Raggy! ^^^----\n"
        return  $ex;
    }
}

... and here is the class to use for the $array2XmlConverter object:

/**
 * Extends the DOMDocument to implement personal (utility) methods.
 * - From: http://www.devexp.eu/2009/04/11/php-domdocument-convert-array-to-xml/
 * - `parent::` See http://www.php.net/manual/en/class.domdocument.php
 *
 * @throws   DOMException   http://www.php.net/manual/en/class.domexception.php
 *
 * @author Toni Van de Voorde
 */
class   XmlDomConstructor   extends DOMDocument {

    /**
     * Constructs elements and texts from an array or string.
     * The array can contain an element's name in the index part
     * and an element's text in the value part.
     *
     * It can also creates an xml with the same element tagName on the same
     * level.
     *
     * ex:
        \verbatim
             <nodes>
                <node>text</node>
                <node>
                    <field>hello</field>
                    <field>world</field>
                </node>
             </nodes>
        \verbatim
     *
     *
     * Array should then look like:
        \verbatim
             array(
                "nodes" => array(
                    "node" => array(
                        0 => "text",
                        1 => array(
                            "field" => array (
                                0 => "hello",
                                1 => "world",
                            ),
                        ),
                    ),
                ),
             );
        \endverbatim
     *
     * @param mixed $mixed An array or string.
     *
     * @param DOMElement[optional] $domElement Then element
     * from where the array will be construct to.
     *
     */
    public  function    fromMixed($mixed, DOMElement $domElement = null) {

        $domElement = is_null($domElement) ? $this : $domElement;

        if (is_array($mixed)) {
            foreach( $mixed as $index => $mixedElement ) {

                if ( is_int($index) ) {
                    if ( $index == 0 ) {
                        $node = $domElement;
                    } 
                    else {
                        $node = $this->createElement($domElement->tagName);
                        $domElement->parentNode->appendChild($node);
                    }
                }
                else {
                    $node = $this->createElement($index);
                    $domElement->appendChild($node);
                }

                $this->fromMixed($mixedElement, $node);
            }
        } 
        else {
            $domElement->appendChild($this->createTextNode($mixed));
        }
    }
} // end of class
share|improve this answer

PHP's DOMDocument objects are probably what you are looking for. Here is a link to an example use of this class to convert a multi-dimensional array into an xml file - http://www.php.net/manual/en/book.dom.php#78941

share|improve this answer
Still... It is not an in-built functions. I think @manbearpig is talking about function "out-from-the-box"... written in C++ for performance... I might be wrong, of course. – Nemoden Apr 20 '11 at 15:50
The DOMDocument class is built in - just the example implementation isn't. Rather, DOMDocument is a standard extension likely installed with most current PHP instances. – 65Fbef05 Apr 20 '11 at 15:54

surely there must be a faster way of doing this

If you've got PEAR installed, there is. Take a look at XML_Seralizer. It's beta, so you'll have to use

 pear install XML_Serializer-beta

to install

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.