2017 © Pedro PelĆ”ez
 

library xml-string-to-php-array

xml to array

image

sb15/xml-string-to-php-array

xml to array

  • Sunday, August 10, 2014
  • by alexander.perov
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1,797 Installations
  • Shell
  • 0 Dependents
  • 0 Suggesters
  • 28 Forks
  • 0 Open issues
  • 3 Versions
  • 18 % Grown

The README.md

One common need when working in PHP is a way to convert an XML document into a serializable array. If you ever tried to serialize() and then unserialize() a SimpleXML or DOMDocument object, you know what I’m talking about., (*1)

Assume the following XML snippet:, (*2)

<tv>
  <show name="Family Guy">
    <dog>Brian</dog>
    <kid>Chris</kid>
    <kid>Meg</kid>
  </show>
</tv>

There’s a quick and dirty way to do convert such a document to an array, using type casting and the JSON functions to ensure there are no exotic values that would cause problems when unserializing:, (*3)

<?php
  $a = json_decode(json_encode((array) simplexml_load_string($s)),1);
?>

Here is the result for our sample XML, eg if we print_r($a):, (*4)

Array
(
    [show] => Array
        (
            [@attributes] => Array
                (
                    [name] => Family Guy
                )
            [dog] => Brian
            [kid] => Array
                (
                    [0] => Chris
                    [1] => Meg
                )
        )
)

Pretty nifty, eh? But maybe we want to embed some HTML tags or something crazy along those lines. then we need a CDATA node…, (*5)

<tv>
  <show name="Family Guy">
    <dog>Brian</dog>
    <kid>Chris</kid>
    <kid>Meg</kid>
    <kid><![CDATA[<em>Stewie</em>]]></kid>
  </show>
</tv>

The snippet of XML above would yield the following:, (*6)

Array
(
    [show] => Array
        (
            [@attributes] => Array
                (
                    [name] => Family Guy
                )
            [dog] => Brian
            [kid] => Array
                (
                    [0] => Chris
                    [1] => Meg
                    [2] => Array
                        (
                        )
                )
        )
)

That’s not very useful. We got in trouble because the CDATA node, a SimpleXMLElement, is being cast to an array instead of a string. To handle this case while still keeping the nice @attributes notation, we need a slightly more verbose conversion function. This is my version, hereby released under a do-whatever-but-dont-sue-me license., (*7)

The result, for our Stewie snippet:, (*8)

Array
(
    [show] => Array
        (
            [@attributes] => Array
                (
                    [name] => Family Guy
                )
            [dog] => Brian
            [kid] => Array
                (
                    [0] => Chris
                    [1] => Meg
                    [2] => <em>Stewie</em>
                )
        )
)

Victory is mine! :D, (*9)


Contributions

[clh-code#1] If a node has attributes, but contains only text, then the output will be an array with both @content and @attributes keys, (*10)

[reggi#4] store root element tag name in @root, (*11)

The Versions

10/08 2014

dev-master

9999999-dev https://github.com/sb15/xml-string-to-php-array

xml to array

  Sources   Download

MIT

The Requires

  • php >=5.3

 

xml

10/08 2014

v0.0.1

0.0.1.0 https://github.com/sb15/xml-string-to-php-array

xml to array

  Sources   Download

MIT

The Requires

  • php >=5.3

 

xml

10/08 2014

0.0.1.x-dev

0.0.1.9999999-dev https://github.com/sb15/xml-string-to-php-array

xml to array

  Sources   Download

MIT

The Requires

  • php >=5.3

 

xml