gpt4 book ai didi

php - 将 .rar 文件解压到 php 中的特定目录

转载 作者:行者123 更新时间:2023-12-02 17:28:04 25 4
gpt4 key购买 nike

我想使用 php 提取 .rar 文件 而不是 .zip 文件我在 php 手册中遵循了这个例子

php manual

本教程中的问题不是将文件解压到目录,它将文件的内容打印到浏览器。

最佳答案

您应该能够使用 RarEntry::extract 从存档中提取文件方法。

所以像这样:

$archive = RarArchive::open('archive.rar');
$entries = $archive->getEntries();
foreach ($entries as $entry) {
$entry->extract('/extract/to/this/path');
}
$archive->close();

关于php - 将 .rar 文件解压到 php 中的特定目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36914245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com