ArrayToXml function

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • gezerpunta

    #1

    ArrayToXml function

    Hi

    Is there a standart function in php5 lib ? where can I find it which
    is stable.

    thks.

  • ZeldorBlat

    #2
    Re: ArrayToXml function

    On May 7, 6:40 am, gezerpunta <css...@gmail.c omwrote:
    Hi
    >
    Is there a standart function in php5 lib ? where can I find it which
    is stable.
    >
    thks.
    It isn't that hard to do it yourself:

    function arrayToXML($a) {
    $xml = '';

    foreach($a as $k =$v)
    $xml .= "<$k>" . (is_array($v) ? arrayToXML($v) : $v) . "</
    $k>";

    return $xml;
    }

    Comment

    Working...