Aller au contenu principal
loading

Extraire un zip en php - Dézipper en php

POSTÉ DANS PHP TAGS PHP AUTEUR herve COMMENTAIRES 6

Voici un script pour dézipper un fichier $zipfilepath à l'endroit $path en php :

$zip = new ZipArchive();
$zipexists = $zip->open($zipfilepath);
if (!$zipexists) {
     echo "Error unzip file: Source doesn't exist";
}
else {
    $zip->extractTo($path);
}
$zip->close();



6 commentaire