ZipArchive::unchangeIndex

(No version information available, might be only in CVS)

ZipArchive::unchangeIndex — Revert all changes done to an entry at the given index.

Описание

mixed ZipArchive::unchangeIndex ( int $index )

Revert all changes done to an entry at the given index.

Список параметров

index

Index of the entry.

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Коментарии

Consider this example:

<?php
$zip 
= new ZipArchive;
$zip->open(...);

$zip->addFile('path/file''foo');
$zip->renameIndex(0'bar');

echo 
$zip->getNameIndex(0); // 'bar'

$zip->unchangeIndex(0);

echo 
$zip->getNameIndex(0); // 'false'
?>

Unless you call save() in between, the unchangeIndex() call reverts back to the initial state of the archive - where index '0' did not exist.

If you called save() after addFile() and then renamed the file, you would be able to revert/undo the name change.
2010-08-29 18:29:36
http://php5.kiev.ua/manual/ru/function.ziparchive-unchangeindex.html

    Поддержать сайт на родительском проекте КГБ