And isn't it faster to convert json feed to xml?
$getJson = file_get_contents('myjson.json'); $array = json_decode($getJson, true); $xml = new SimpleXMLElement('<root/>'); array_walk_recursive($array, array($xml, 'addChild')); print $xml->asXML();
And isn't it faster to convert json feed to xml?
$getJson = file_get_contents('myjson.json'); $array = json_decode($getJson, true); $xml = new SimpleXMLElement('<root/>'); array_walk_recursive($array, array($xml, 'addChild')); print $xml->asXML();
And isn't it faster to convert json feed to xml?