Skip to content

Instantly share code, notes, and snippets.

View HadleighAndHall's full-sized avatar

HadleighAndHall

View GitHub Profile
@trajche
trajche / unzip.php
Last active September 28, 2022 18:17
Unzip a file on one.com with PHP
<?php
$unzip = new ZipArchive;
$out = $unzip->open('file-name.zip');
if ($out === TRUE) {
$unzip->extractTo(getcwd());
$unzip->close();
echo 'File unzipped';
} else {
echo 'Something went wrong?';