I'm having trouble retrieving and decompressing a remote gzip XML file.
To get the file I'm using:
$url = 'http://www.domain.com/xml.gzip';
$linkToXmlFile = fopen("compress.zlib://$url", "r");
Then I've tried:
try {
$xml = new SimpleXmlElement($rawFeed);
...
}
To no avail.
Tried this ?