Skip to content

Instantly share code, notes, and snippets.

@alOneh
Created July 19, 2013 17:35
Show Gist options
  • Save alOneh/6040942 to your computer and use it in GitHub Desktop.
Save alOneh/6040942 to your computer and use it in GitHub Desktop.
<?php
$zip = new ZipArchive();
$t = $zip->open('MA.20130715-174538.ZIP');
$fp = $zip->getStream('MA.XML');
while (!feof($fp)) {
echo fread($fp, 4096);
}
fclose($fp);
$zip->close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment