[PHP] Advise on parsing XML

2004-08-05 Thread Gerard Samuel
Im writing an xml parser. Most of the documents Im parsing, is written by someone else, so have no control over the validity of the xml file. Im running into problems with parsing a few documents where the author uses exotic characters such as é. Characters like this kill the parser. Ok. Im

Re: [PHP] Advise on parsing XML

2004-08-05 Thread CD Baby
I'm writing an xml parser. Gerard - All of that stuff has already been taken care of for you. Hundreds of hours have gone into developing GREAT xml parsers! http://www.php.net/dom and http://www.php.net/simplexml They take care of the utf-8 decoding and all of that. -- PHP General Mailing

Re: [PHP] Advise on parsing XML

2004-08-05 Thread Gerard Samuel
On Thursday 05 August 2004 11:33 pm, CD Baby wrote: I'm writing an xml parser. Gerard - All of that stuff has already been taken care of for you. Hundreds of hours have gone into developing GREAT xml parsers! http://www.php.net/dom and http://www.php.net/simplexml They take care of