The RarArchive class

(PECL rar >= 2.0.0)

简介

This class represents a RAR archive, which may be formed by several volumes (parts) and which contains a number of RAR entries (i.e., files, directories and other special objects such as symbolic links).

Objects of this class can be traversed, yielding the entries stored in the respective RAR archive. Those entries can also be obtained through RarArchive::getEntry() and RarArchive::getEntries().

类摘要

final class RarArchive implements Traversable {
/* 方法 */
public function close(): bool
public function getComment(): string
public function getEntries(): array|false
public function getEntry(string $entryname): RarEntry|false
public function isBroken(): bool
public function isSolid(): bool
public static function open(string $filename, string $password = NULL, callable $volume_callback = NULL): RarArchive|false
public function setAllowBroken(bool $allow_broken): bool
public function __toString(): string
}

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top