| Article: |
Using PHP 5's SimpleXML | |
| Subject: | Neat, but... | |
| Date: | 2004-01-16 03:54:16 | |
| From: | anonymous2 | |
|
I imagine the overhead of parsing the whole document and loading it into memory can be tremendous for sufficiently-large XML documents.
|
||
Showing messages 1 through 2 of 2.
-
Neat, but...
2004-01-16 09:54:22 Adam Trachtenberg |
[View]
-
Neat, but...
2004-03-10 12:31:04 riffraff [View]
what about pull parsing? isn't that both memory efficient and at least easyer to handle than sax ?



The only alternative from a memory perspective is SAX, but SAX can be quite painful to program when your schema is complex. (Try parsing the Apple pList format, for example.)