add DEPLOY scripts

This commit is contained in:
2022-08-03 02:04:26 +03:00
parent 0a81354a78
commit e0d13b1fe6
3 changed files with 65 additions and 0 deletions

11
unpack.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
$zipFile = $_GET['f'];
$zip = new ZipArchive;
if ($zip->open($zipFile) === TRUE) {
$zip->extractTo('.');
$zip->close();
unlink(zipFile);
}
?>