I have a problem...
I'm trying to read a zip file and write each file to disk, however when I try to read the zip entry I get no data back...
$filePointer = fopen($outputXLSFile, 'w+b');
$fileBuffer = zip_entry_read($zipEntry, zip_entry_filesize($zipEntry));
fwrite($filePointer, $fileBuffer);
fclose($filePointer);
When the script exits, I get a zero length file in the correct location. I am able to read all the information from the zip file (compression method, file sizes).
Thoughts?