read simple xml as dom php code example
Example 1: php parse xml
$movies = new SimpleXMLElement($xmlstr);
echo $movies->movie[0]->plot;
Example 2: xml to object php
$object = json_decode(json_encode(simplexml_load_string($xml)));
$movies = new SimpleXMLElement($xmlstr);
echo $movies->movie[0]->plot;
$object = json_decode(json_encode(simplexml_load_string($xml)));