[PHP] Recommendation for an XML class?

2008-02-06 Thread Brian Dunning
I see there are billions of XML classes out there. Can anyone recommend one that's good simple? My needs are quite basic, all I really need is to draw simple values out of the XML, like convert order_no123/order_no to $order_no = 123. Thanks... -- PHP General Mailing List

Re: [PHP] Recommendation for an XML class?

2008-02-06 Thread Nathan Nobbe
On Feb 6, 2008 3:09 PM, Brian Dunning [EMAIL PROTECTED] wrote: I see there are billions of XML classes out there. Can anyone recommend one that's good simple? My needs are quite basic, all I really need is to draw simple values out of the XML, like convert order_no123/order_no to $order_no =

Re: [PHP] Recommendation for an XML class?

2008-02-06 Thread Paul Scott
On Wed, 2008-02-06 at 15:12 -0500, Nathan Nobbe wrote: SimpleXML, http://www.php.net/manual/en/ref.simplexml.php Dude, I thought you were playing with SPL! SimpleXML _then_ use the SimpleXMLIterator to work with it! http://www.php.net/spl --Paul All Email originating from UWC is covered

Re: [PHP] Recommendation for an XML class?

2008-02-06 Thread Nathan Nobbe
On Feb 6, 2008 4:04 PM, Paul Scott [EMAIL PROTECTED] wrote: Dude, I thought you were playing with SPL! SimpleXML _then_ use the SimpleXMLIterator to work with it! http://www.php.net/spl well of course; if you need to flatten out an xml structure in a few lines of code ;) -nathan