Skip to content

Instantly share code, notes, and snippets.

@pmgupte
Last active August 29, 2015 14:20
Show Gist options
  • Save pmgupte/a33d4abeb0b07ee5a119 to your computer and use it in GitHub Desktop.
Save pmgupte/a33d4abeb0b07ee5a119 to your computer and use it in GitHub Desktop.
PHP one-liner to convert XML into Array
<?php
$arr = json_decode(json_encode(simplexml_load_string($xml, null, LIBXML_NOCDATA)), true);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment