Monday, April 27, 2015

XML to Array

Here's a PHP one-liner to convert XML string into associative array.
<?php
$arr = json_decode(json_encode(simplexml_load_string($xml, null, LIBXML_NOCDATA)), true);
?>

No comments:

Post a Comment