PHP Zip Dosyası Oluşturma

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');
}
💬 Yorumlar
Henüz yorum yapılmamış. İlk yorumu sen yap! 👆