Skip to content

Instantly share code, notes, and snippets.

@vladdancer
Created March 8, 2019 13:35
Show Gist options
  • Save vladdancer/423d866ed7193eda20eab28f83212918 to your computer and use it in GitHub Desktop.
Save vladdancer/423d866ed7193eda20eab28f83212918 to your computer and use it in GitHub Desktop.
unzip dir instead of transfering via FTP #php #ftp #deployment
<?php
$zip = new ZipArchive;
if ($zip->open('archive.zip') === TRUE) {
$zip->extractTo('./destDir');
$zip->close();
echo 'ok';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment