Jul 26, 2012
kalpesh

Convert PHP XML to JSON, XML to Array, JSON to Array

Converting PHP XML to JSON, XML to Array, JSON to Array is very difficult task for some people. But, in PHP, believe me it’s very easy. One line of code each! Don’t believe? Just check out the code below and test it yourself!

1
2
3
$xml = simplexml_load_string($xmlstring);
$json = json_encode($xml);
$arr = json_decode($json,true);

Happy Coding!

Leave a comment