php laravel xml ke json
$xml = simplexml_load_string($xml_string);
$json = json_encode($xml);
$array = json_decode($json, TRUE);
# Attributes are stored in the array under the @attributes key
MatrixZA