Last active
August 29, 2015 14:20
-
-
Save pmgupte/a33d4abeb0b07ee5a119 to your computer and use it in GitHub Desktop.
PHP one-liner to convert XML into Array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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