Ben bir ZIP dosyası oluşturmak ve kaydetmek için bu kodu yazdım. Ama nedense bu sadece herhangi bir hata görünmüyor, ama o da bir ZIP dosyası oluşturmaz. İşte kod:
$zip = new ZipArchive;
$time = microtime(true);
$res = $zip->open("maps/zips/test_" . $time . ".zip", ZipArchive::CREATE);
if ($res === TRUE) {
echo "RESULT TRUE...";
$zip->addFile("maps/filename.ogz","filename.ogz"); //Sauerbraten map format
$zip->addFromString('how_to_install.txt', 'Some Explanation...');
$zip->close();
$zip_created = true;
echo "FILE ADDED!";
}
Ne ben yanlış yapıyorum, ve bunu nasıl düzeltebilirim?