Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何在 linux 虚拟主机上提取 7z 存档。我目前正在使用下面的代码解压缩 .zip 文件,但这不适用于 .7z
// Unzip File $zip = new ZipArchive; if ($zip->open($userPath . 'import.7z') === TRUE) { $zip->extractTo($userPath); $zip->close(); } else { echo 'failed'; }
7z 文件格式可以使用各种压缩算法,因此您可以使用现有的 bzip2 或 deflate 实用程序之一解压缩存档。
不过,您可能需要使用这样的库。这是最新版本。