Hi, I know, sorry I feel quite stupid now, I was just wondering if anyone uses an XML lib, due to contraints with simpleXML et al, provided by PHP (I dont know of any).
What I need to do is comunicate with an external service via an XML link, (HTTPS posts) so I could even just use strings. The service isnt restful, nor does it provide any apis. Im thinking simpleXML will do just fine then. Thanks. 2009/12/4 Ralph Schindler <[email protected]>: > 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. >> >
