Jump to content

Edit History

knacky

knacky

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();

 

knacky

knacky

And isn't it faster to convert json feed to xml?

×
×
  • Create New...