Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

mmmm....ok.. i'm failing to comprehend why do we need 2 xml parsers in PHP. Can someone explain the difference between those? :)

Thanks!

share|improve this question

3 Answers

up vote 36 down vote accepted

In a nutshell:

SimpleXml

  • is for simple XML and/or simple UseCases
  • limited API to work with nodes (e.g. cannot program to an interface that much)
  • all nodes are of the same kind (element node is the same as attribute node)
  • nodes are magically accessible, e.g. $root->foo->bar['attribute']

DOM

  • is for any XML UseCase you might have
  • is an implementation of the W3C DOM API (found implemented in many languages)
  • differentiates between various Node Types (more control)
  • much more verbose due to explicit API (can code to an interface)
  • can parse broken HTML
  • allows you to use PHP functions in XPath queries

Both of these are based on libxml and can be influenced to some extend by the libxml functions


Personally, I dont like SimpleXml too much. That's because I dont like the implicit access to the nodes, e.g. $foo->bar[1]->baz['attribute']. It ties the actual XML structure to the programming interface. The one-node-type-for-everything is also somewhat unintuitive because the behavior of the SimpleXmlElement magically changes depending on it's contents.

For instance, when you have <foo bar="1"/> the object dump of /foo/@bar will be identical to that of /foo but doing an echo of them will print different results. Moreover, because both of them are SimpleXml elements, you can call the same methods on them, but they will only get applied when the SimpleXmlElement supports it, e.g. trying to do $el->addAttribute('foo', 'bar') on the first SimpleXmlElement will do nothing. Now of course it is correct that you cannot add an attribute to an Attribute Node, but the point is, an attribute node would not expose that method in the first place.

But that's just my 2c. Make up your own mind :)


On a sidenote, there is not two parsers, but a couple more in PHP. SimpleXml and DOM are just the two that parse a document into a tree structure. The others are either pull or event based parsers/readers/writers.

Also see my answer to

share|improve this answer
1  
Nice answer. To make it complete, you can add XMLReader php.net/xmlreader ;) Its faster and consumes not that much memory (its stream-based), but its more difficult to use. -- Just read your answer to the end: You mentioned it. ^^ – KingCrunch Jan 26 '11 at 13:32
1  
Actually, if you run XPath to get attributes, the objects that are returned can simply be cast as a string if you want their value, e.g. $attrs = $sxe->xpath('/foo/bar/@baz'); echo $attrs[0]; – Josh Davis Jan 27 '11 at 2:35
1  
@Josh which makes it even more unintuitive because the SimpleXml element is changing it's behavior depending on it's internal state. But I get a feeling of DejaVu here ;) – Gordon Jan 27 '11 at 8:20
I understand, and agree to an extent with, your criticism of SimpleXML's one class for all nodes design, but the fact that "the object dump ... will be identical" is a limitation of the object dump (by which I imagine you mean print_r or var_dump), not the object - although I guess that's still a limitation of the library. – IMSoP 2 days ago

I'm going to make the shortest answer possible so that beginners can take it away easily. I'm also slightly simplifying things for shortness' sake. Jump to the end of that answer for the overstated TL;DR version.


DOM and SimpleXML aren't actually two different parsers. The real parser is libxml2, which is used internally by DOM and SimpleXML. So DOM/SimpleXML are just two ways to use the same parser and they provide ways to convert one object to another.

SimpleXML is intended to be very simple so it has a small set of functions, and it is focused on reading and writing data. That is, you can easily read or write a XML file, you can update some values or remove some nodes (with some limitations!), and that's it. No fancy manipulation, and you don't have access to the less common node types. For instance, SimpleXML cannot create a CDATA section although it can read them.

DOM offers a full-fledged implementation of the DOM plus a couple of non-standard methods such as appendXML. If you're used to manipulate DOM in Javascript, you'll find exactly the same methods in PHP's DOM. There's basically no limitation in what you can do and it evens handles HTML. The flipside to this richness of features is that it is more complex and more verbose than SimpleXML.


Side-note

People often wonder/ask what extension they should use to handle their XML or HTML content. Actually the choice is easy because there isn't much of a choice to begin with:

  • if you need to deal with HTML, you don't really have a choice: you have to use DOM
  • if you have to do anything fancy such as moving nodes or appending some raw XML, again you pretty much have to use DOM
  • if all you need to do is read and/or write some basic XML (e.g. exchanging data with an XML service or reading a RSS feed) then you can use either. Or both.
  • if your XML document is so big that it doesn't fit in memory, you can't use either and you have to use XMLReader which is also based on libxml2, is even more annoying to use but still plays nice with others

TL;DR

  • SimpleXML is super easy to use but only good for 90% of use cases.
  • DOM is more complex, but can do everything.
  • XMLReader is super complicated, but uses very little memory. Very situational.
share|improve this answer
1  
thanks Josh. for those whore are like WTF is tldr thing: "Too long; didn't read". – Stann Jan 27 '11 at 14:56
Please remove complicated or mark it as personal opinion. DOM is not complicated. It's clean and explicit API makes it easy to grasp, even for beginners. Unlike SimpleXml, where you have to guess what it does due to the reasons I've pointed out in my answer. Just because something is verbose doesnt mean it is more complicated. On the contrary. Apart from that, good write-up. – Gordon Jan 27 '11 at 15:46
Although the TL;DR section is said to be overstated, I wouldn't want to argue over the meaning or the weight of a word, so how about settling for saying that DOM is "more complex"? My dictionary seems to fully support that construct. – Josh Davis Jan 27 '11 at 17:39
Absolutely fine. Thank you. – Gordon Jan 27 '11 at 21:54
Regarding HTML, you can load an HTML document with the DOM and then use simplexml_import_dom to traverse it with SimpleXML, so it's not quite true that you have to use DOM. – IMSoP 2 days ago

SimpleXML is, as name states, simple parser for XML content, and nothing else. You cannot parse, let's say standard html content. It's easy and quick, and therefore a great tool for creating simple applications.

DOM extension, on other side, is much more powerful. It enables you to parse almost any DOM document, including html, xhtml, xml. It enables you to open, write and even correct output code, supports xpath and overall more manipulation. Therefore, its usage is much more complicated, because library is quite complex, and that makes it a perfect tool for bigger projects where heavy data manipulation is needed.

Hope that answers your question :)

share|improve this answer
2  
It's also worth noting that you can use both SimpleXML functions and DOM functions on the same document -- see the example from Jeff M on the dom_import_simplexml manual page. I've used this to do most of my processing using SimpleXML, but do a couple of trickier things using DOM (e.g. creating a CDATA section), all operating on the same underlying document. – Matt Gibson Jan 26 '11 at 10:05
What limitations are you talking about wrt namespaces? – Josh Davis Jan 26 '11 at 11:02
php.net/manual/en/book.dom.php, php.net/manual/en/book.simplexml.php A glance at methods list will be sufficient :> – usoban Jan 26 '11 at 11:09
Actually, no it's not. Can you please elaborate on those limitations? – Josh Davis Jan 26 '11 at 11:14
okay, for example, let's look at php.net/manual/en/domelement.getattributens.php. SimpleXML just doesn't provide easy enough solution like this. I mean, it can be done, using more code, but is that its purpose? I'd rather just use dom. – usoban Jan 26 '11 at 11:19
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.