PHP has awesome built in support for handling XML.
http://www.php.net/manual/en/refs.xml.php
What exactly are you needing to do?
If you are dealing with xml documents, DOM might be a good choice. For
dealing with xml snippets that you want represented in PHP object
format, SimpleXML would be a good choice. For really large documents
XMLReader and XMLWriter are good choices. Ultimately, it all depends on
what you are attempting to do.
-ralph
Daniel Latter wrote:
Hi All,
Can anyone recommend any XML libs they use with thier ZF app? I need to
create, parse, request/respond etc..
Thanks.