open($file); if ($res === TRUE) { // extract it to the path we determined above $zip->extractTo($path); $zip->close(); echo "$file extracted to $path"; } else { echo "I couldn't open $file"; } ?>