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?

link|improve this question

64% accept rate
If you goal is to retrieve the array - then you should use self-written or taken from anywehre XML parser. But there is lots of problems, could tou provide an example of XML, would there be an attributes, namespaces and so on... – devdRew Jan 5 at 8:21
XML is too complicated to be sensibly expressed as an array. That is one of the main reasons that SimpleXML is OO. That is also the reason why you should use SimpleXML. If you try to convert an XML document to an array, you will either lose some of the information, or the array will be ridiculously complicated and unusable. – DaveRandom Jan 5 at 10:04
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.