gpt4 book ai didi

没有 exec() 的 PHP Untar-gz?

转载 作者:IT王子 更新时间:2023-10-29 01:21:36 27 4
gpt4 key购买 nike

如何在不使用 exec('tar') 或任何其他命令的情况下使用纯 PHP 在 php 中解压缩文件?

我的问题如下;我有一个 26mb 的 tar.gz 文件需要上传到我的服务器并解压缩。我试过用net2ftp解压,但不支持tar.gz上传后解压。

我使用的是免费网络主机,所以他们不允许任何 exec() 命令,也不允许访问提示。那么我将如何解开它呢?

PHP 有内置命令吗?

最佳答案

从 PHP 5.3.0 开始,您不需要使用 Archive_Tar

有一个新的类可以处理 tar 存档:The PharData class .

提取文件(使用 PharData::extractTo(),其工作方式类似于 ZipArchive::extractTo()):

try {
$phar = new PharData('myphar.tar');
$phar->extractTo('/full/path'); // extract all files
} catch (Exception $e) {
// handle errors
}

如果您有 tar.gz 存档,只需在解压前解压缩(使用 PharData::decompress()):

// decompress from gz
$p = new PharData('/path/to/my.tar.gz');
$p->decompress(); // creates /path/to/my.tar

// unarchive from the tar
$phar = new PharData('/path/to/my.tar');
$phar->extractTo('/full/path');

关于没有 exec() 的 PHP Untar-gz?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9416508/

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