Hi,
I am struggling to read gzipped xml files in php.
I did succeed in reading normal xml files, using XMLReader() like this:
$xml = new XMLReader();
$xml->open($linkToXmlFile);
However, this does not work when the xml file is gzipped. How can I unzip the file and read it with the XMLReader?