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

| Q | A | ------------- | --- | Bug fix? | yes | New feature? | no This adds missing OS_* constants, using the same names that ZipArchive uses....

**Description** it's very useful to get list of files by filter. like glob pattern or regex filter. **Example** get list of all css files: `$zipFile->getListFiles('*.css')`

| Q | A | -----------------------------| --- | Library version(s) affected: | 4.0.0 | PHP version(s): | 7.2 and up Hi, After the bump to `4.x`, there's a hard cutoff...

| Q | A | ------------- | --- | Bug fix? | yes | New feature? | no As symlinks are special files in the zip, symlinks to directories must...

| Q | A | ------------- | --- | Bug fix? | no | New feature? | yes The composer.json currently has a dependency on ext-zlib, however this project is...

| Q | A | -----------------------------| --- | Library version(s) affected: | phpZip | PHP version(s): | 7.3 | OS (with bit depth): | Ubuntu 18.04 64-bit **Description** chmod(): No...

| Q | A | -----------------------------| --- | Library version(s) affected: | ^3.3 | PHP version(s): | 7.4.10 | OS (with bit depth): | ProductName: macOS ProductVersion: 11.1 BuildVersion: 20C5048k...

**Description** With symfony this would a pretty easy way to stream large zip files on the fly: ``` $finder = new Finder(); $finder ->files() ->in('path'); $zipFile = new ZipFile(); $zipFile->addFromFinder($finder,...

I basically need to be able to read ZIP streams from files hosted on an HTTP site. Currently, I can do streams with Guzzle, even if the file doesn't support...

**Description** **Example** ![image](https://user-images.githubusercontent.com/22534117/92909823-0e28a480-f45a-11ea-9b8d-ff5afcea1f79.png) `//压缩文件夹 $this->zipfile->addDirRecursive($beforepath); // save the archive to a file $this->zipfile->withNewPassword('run1234!@#'); $this->zipfile->saveAsFile($zippath.'/'.$zipname); $this->zipfile->close(); `