Skip to content

Instantly share code, notes, and snippets.

@nympheastudio
Created February 2, 2021 10:22
Show Gist options
  • Save nympheastudio/90800f1148f32d54bb230a404612d71e to your computer and use it in GitHub Desktop.
Save nympheastudio/90800f1148f32d54bb230a404612d71e to your computer and use it in GitHub Desktop.
dézipper .zip en PHP
$fichier_zip = 'fichier_zip.zip';
$path = pathinfo(realpath($file), PATHINFO_DIRNAME);
$zip = new ZipArchive;
$res = $zip->open($fichier_zip);
if ($res === TRUE) {
$zip->extractTo($path);
$zip->close();
} else {
echo "Erreur lors du dezippage ! ";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment