Skip to content

Instantly share code, notes, and snippets.

@pkruithof
Created May 2, 2014 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pkruithof/f9a83ab1f9702c98fe40 to your computer and use it in GitHub Desktop.
Save pkruithof/f9a83ab1f9702c98fe40 to your computer and use it in GitHub Desktop.
<?php
$gzp = gzopen('feed.xml.gz', 'r');
$fp = fopen('feed.xml', 'w');
while (!gzeof($gzp)) {
fwrite($fp, gzgets($gzp, 4096));
}
fclose($fp);
gzclose($gzp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment