|
Posted by Benjamin on 02/24/07 21:05
On Feb 24, 3:48 am, "monomaniac21" <mcyi2...@googlemail.com> wrote:
> Hi all
>
> I need to use some Ajax for a site running PHP, I was wondering which
> is the best xml parser to use?
There are a couple XML parsers you can use with PHP. Which one you use
is decided by your needs. The easiest to use and my favorite is
SimpleXML (http://www.php.net/simplexml). You load an XML file and
query the structure of the file by XPath. You do, however, need PHP 5.
Another approach is the XML parser functions (http://www.php.net/xml).
You set functions that will be called when the parser hits nodes in
the document. Getting a little more advanced, the XMLReader functions
(they require PHP 5 too), allow you to move a "cursor" around the XML
document you're parsing (http://www.php.net/xmlreader). Good Luck!
>
> regards
>
> Marc
Navigation:
[Reply to this message]
|