Home >Backend Development >PHP Tutorial >PHP array to xml and xml conversion array example_PHP tutorial
This article will introduce to you two simple examples, converting php array to xml and converting xml array. I hope this article will be helpful to you.
php array to xml
The code is as follows
|
Copy code
|
||||
If($xml === false){ $xml = new SimpleXMLElement(' } foreach($array as $key => $value){ If(is_array($value)){ array2xml($value, $xml->addChild($key)); }else{ $xml->addChild($key, $value); } Return $xml->asXML(); } header('Content-type: text/xml'); print array2xml($array); |
php xml to array