Would anyone know how to extract 7z archive on linux web hosting. I am currently using the code below to unzip .zip files, but this does not work for .7z
// Unzip File
$zip = new ZipArchive;
if ($zip->open($userPath . 'import.7z') === TRUE) {
$zip->extractTo($userPath);
$zip->close();
} else {
echo 'failed';
}