Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
Наш чат в Telegram для обмена идеями, проектами, мыслями, людьми в сфере ИТ г.Ростова-на-Дону: @it_rostov
ZipArchive::getFromIndex
ZipArchive::getFromIndex - Returns the entry contents using its index.Описание
mixed ZipArchive::getFromIndex ( int index [, int flags] )Returns the entry contents using its index.
Список параметров
- index
-
Index of the entry
- flags
-
The flags to use to open the archive. the following values may be ORed to it.
-
ZIPARCHIVE::FL_UNCHANGED
-
ZIPARCHIVE::FL_COMPRESSED
-
Возвращаемые значения
Returns the contents of the entry on success or FALSE on failure.
Примеры
Пример 1. Get the file contents
$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
echo $zip->getFromIndex(2);
$zip->close();
} else {
echo 'failed';
}
Смотрите также:
Все функции arxiv
Описание на ru2.php.net
Описание на php.ru