gpt4 book ai didi

php - 如何在 Windows 上使用 php 解压缩文件

转载 作者:可可西里 更新时间:2023-11-01 11:11:00 25 4
gpt4 key购买 nike

如何在 Windows 上使用 php 解压文件?是否有任何脚本或代码可以实现?

谢谢

最佳答案

查看此链接:

http://us2.php.net/manual/en/book.rar.php

使用该扩展,您可以执行以下操作:

$rar_file = rar_open('example.rar') or die("Can't open Rar archive");

$entries = rar_list($rar_file);

foreach ($entries as $entry) {
echo 'Filename: ' . $entry->getName() . "\n";
echo 'Packed size: ' . $entry->getPackedSize() . "\n";
echo 'Unpacked size: ' . $entry->getUnpackedSize() . "\n";

$entry->extract('/dir/extract/to/');
}

rar_close($rar_file);

关于php - 如何在 Windows 上使用 php 解压缩文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/541573/

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