Skip to content

shyim/ext-php-zip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP Zip extension

This extension allows to handle zip archives in memory without the need of a temporary file.

$a = file_get_contents('test.zip');
$test = new RustZip($a);
// is file in zip
$test->has('README.md');
// get file content from zip
$test->get('README.md');
// get all files in zip
$test->files();

About

Rust PHP Extension for Zip handling in-memory

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages