Skip to content

Instantly share code, notes, and snippets.

@GHJayce
Created September 4, 2022 08:48
Show Gist options
  • Select an option

  • Save GHJayce/853c78fe72fc02658ed559f8dbe7ad97 to your computer and use it in GitHub Desktop.

Select an option

Save GHJayce/853c78fe72fc02658ed559f8dbe7ad97 to your computer and use it in GitHub Desktop.
php zip operate
<?php
$filePath = '/Users/jayce/Desktop/test.zip';
$archive = \new ZipArchive();
$archive->open($filePath);
$archive->extraceTo($saveDirPath);
$archive->close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment