<?php $xml = <<< END <product> <ref>32332</ref> <name>Test 1</name> <features> <feature> <name>Feature 1</name> <value>Red</value> </feature> <feature> <name>Feature 2</name> <value>Large</value> </feature> </features> </product> END; $object = simplexml_load_string($xml); print_r(json_decode(json_encode($object), true));
You have javascript disabled. You will not be able to edit any code.