I am using XMLReader in PHP to parse data from an 80MB XML site. I am using XMLReader because I don't want to load the whole file in memory and parse it like SimpleXML does. As I understand, I can stream the data when using XMLReader.
The problem is that the XML file says on the top: xml version="1.0" encoding="UTF-8"
but when I parse it with XMLReader, the script quits unexpectedly on a "é" character. I thought of changing the encoding to ISO-8859-1" but now the script quits at "½"
I read that I could UTF8_encode the whole file, but then, I dont want to load that huge file into memory. So, what other options do I have? Thanks for your help, guys!
utf8_encodewill not help here. – deceze Oct 21 '11 at 3:17