alternatives to simpleXML for parsing xml files with PHP
问题 i just want to know if there are any alternatives to simpleXML for parsing XML Data with PHP. For example if simpleXML module is not loaded or even if there is a lib/class out there that has a better performance then SimpleXML. 回答1: Obviously there's a ton of different way to process XML both as PHP extensions and userspace librairies. The problem is they are all much much more complicated than SimpleXML and nowhere as fast for random access. I'm not sure what's the goal of your question