Hey Kexiao,
PHP itself already has XML support above and beyond most other
languages. That said, there are a number of XML interfaces you should
look at.
For xml parsed into native structures:
http://us.php.net/simplexml
For a dom based interface to xml:
http://us.php.net/dom
Or if you need to use something less memory intensive on large xml docs:
http://us.php.net/xmlreader
http://us.php.net/xmlwriter
You also have the expat (handler approach) to parsing:
http://us.php.net/manual/en/ref.xml.php
Lots of options, all good for different types of tasks,
-ralph
Kexiao Liao wrote:
Does Zend Framework support any XML file processing functionalities?
If we like to parsing xml file inside Zend Framewrok application, how do we
implement it? Thanks in advance.