argv['path'])) { throw new \Exception('Missing admin theme path "--path" specified'); } $zip = new ZipArchive; $res = $zip->open(ROOT_DIR . $this->argv['path']); if ($res === TRUE) { $zip->extractTo(RESOURCES_DIR . '/tmp/ad/'); $zip->close(); echo 'woot!'; } else { echo 'doh!'; } } }