php-zip icon indicating copy to clipboard operation
php-zip copied to clipboard

PhpZip is a php-library for extended work with ZIP-archives.

Results 32 php-zip issues
Sort by recently updated
recently updated
newest added
trafficstars

Hello. I want that all my extracted files be stored in S3 instead in my local public folder. Is that possible? I try to debug using isDirectory but it said...

**Description** It would be great to have a function to extract files to a stream instead of a directory. At the moment, I'm calling `openFromStream` to read my zip archive...

**Description** PHP has a function called [copy](https://www.php.net/manual/en/function.copy.php) `copy` get two parameters, source and destination. We can use a remote file for source not a local file, like: `copy('http://someserver.com/somefile.zip','./somefile.zip')` Please add...

use **adddirrecursive** compression. When there are videos or application (. exe) files in the directory, the size is only 20m. The waiting time is very long, takes up a lot...

**Description** I'm using php-zip in an AWS Lambda with a zip in S3 using the seekable stream wrapper - which works great! However, the use of `php://temp` means the lambda's...

| Q | A | -----------------------------| --- | Library version(s) affected: | 3.3.3 | PHP version(s): | 7.2 | OS (with bit depth): | Alpine Docker **Description** When an archive...

Zip up a large file (like a VM) and try to unzip using a normal zip tool. End-of-central-directory signature not found' is the result when trying to unzip. This is...

cant openfile with a right password

| Q | A | -----------------------------| --- | Library version(s) affected: | 3.1.9 | PHP version(s): | 7.2 | OS (with bit depth): | Win 10 x64 (A) + debian...

**Description** `setPassword` corrupts my CSV files **How to reproduce** ``` $zipFile = new ZipFile; $zipFile->addDir($dir); // directory with several very small .csv files $zipFile->setPassword('password'); $zipFile->saveAsFile('path.zip')->close(); ```