Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@iredun
Created October 26, 2015 07:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iredun/cabf09d628ba6131ea1f to your computer and use it in GitHub Desktop.
Save iredun/cabf09d628ba6131ea1f to your computer and use it in GitHub Desktop.
Array to Xml
<?php
header("Content-Type: text/xml");
$array = array (
'10.10.10.10' => 'Server'
);
$xml = new SimpleXMLElement('<root/>');
array_walk_recursive($array, array ($xml, 'addChild'));
print $xml->asXML();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment