I want to parse large data from xml to array in PHP.
I have two option,
1st is using simplexml_load_string which will give me an object, from which I can make my desired object.
2nd is using any xml_to_array converter class/function which will give me an array, from which I can make my desired object.
Please guide me pros and cons of these methods. Which method I should go with?