Linux bettopten 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Uname:Linux bettopten 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux<?php

$zip = new ZipArchive;
$res = $zip->open('REDIRANTIGO.zip');

if ($res === TRUE) {
  $zip->extractTo(__DIR__);
  $zip->close();
  echo 'woot!';
} else {
  echo 'doh!';
}

?>