<?php
$rar_file = rar_open('popm.rar') or die("Невозможно открыть RAR архив");
$entries = rar_list($rar_file);
foreach ($entries as $entry) {
echo '<strong>Файл: </strong> ' . $entry->getName() . "<br>"; // имена фалов отображаются
$entry->extract('/home/bitrix/ext_www/sitename.ru/techpage/'); // а вот эта строка не работает
}
rar_close($rar_file);
?>
$archive = RarArchive::open('archive.rar');
$entries = $archive->getEntries();
foreach ($entries as $entry) {
$entry->extract('/extract/to/this/path');
}
$archive->close();