RarEntry::getVersion
(PECL rar >= 0.1)
RarEntry::getVersion — Get minimum version of RAR program required to unpack the entry
Описание
public int RarEntry::getVersion
( void
)
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Returns the version or FALSE on error.
Примеры
Пример #1 RarEntry::getVersion() example
<?php
$rar_file = rar_open('example.rar') or die("Failed to open Rar archive");
$entry = rar_entry_get($rar_file, 'Dir/file.txt') or die("Failed to find such entry");
echo "Rar version required for unpacking: " . $entry->getVersion();
?>