Skip to content

Instantly share code, notes, and snippets.

@longbill
Created March 3, 2012 07:05
Show Gist options
  • Save longbill/1964800 to your computer and use it in GitHub Desktop.
Save longbill/1964800 to your computer and use it in GitHub Desktop.
One line xml to array in php
<?php
function xml2array($x)
{
return json_decode(json_encode(simplexml_load_string($x)),true);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment