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

· kalpesh

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!

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

Happy Coding!

#array #json #php json to array #php xml to array #php xml to json #xml