Skip to content

Instantly share code, notes, and snippets.

@seebz
Last active October 13, 2015 20:17
Show Gist options
  • Select an option

  • Save seebz/4249703 to your computer and use it in GitHub Desktop.

Select an option

Save seebz/4249703 to your computer and use it in GitHub Desktop.
XML 2 Array
<?php
// http://jaspreetchahal.org/php-xml-to-array-simplest-way/
function xml2array($xml) {
$obj = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
$json = json_encode($obj);
return json_decode($json, true);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment