Skip to content

Instantly share code, notes, and snippets.

@rseon
Created December 6, 2017 11:01
Show Gist options
  • Save rseon/92e4044769f8699919149f3b8319b4d7 to your computer and use it in GitHub Desktop.
Save rseon/92e4044769f8699919149f3b8319b4d7 to your computer and use it in GitHub Desktop.
[PHP] Unzip file
<?php
$zip = new ZipArchive;
if($zip->open('../fonts/transfonter.org-20160601-124035.zip') === true) {
$zip->extractTo('../fonts/Gotham/');
$zip->close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment