$zip = new ZipArchive;
if ($zip->open(getcwd() . '/serifgungorcom.zip', ZipArchive::CREATE) === TRUE) {
$zip->addFile(getcwd() . '/test.webp', 'C:/test.webp');
}
PHP Zip Dosyası Oluşturma
PHP Zip Dosyası Oluşturma Örneği
PHP Zip Dosyası Oluşturma Örneği
$zip = new ZipArchive;
if ($zip->open(getcwd() . '/serifgungorcom.zip', ZipArchive::CREATE) === TRUE) {
$zip->addFile(getcwd() . '/test.webp', 'C:/test.webp');
}