Hiya,
I currently do alot of data parsing, and have toyed with PHP functions for XML such as simple XML and a few others here and there.
But there always seems to be some sort of issue with dealing with them, mainly due to the way the data is presented.
The most reliable way i have found is to always just simply use preg_match_all and regular expression to pull the my data in to the script for processing.
Does anyone see a problem with this? what are the cons of using Regular expression rather than ready build XML parsers?
My main concern is speed and server utilization of resources.