CakeFest 2024: The Official CakePHP Conference

ZipArchive::unchangeAll

(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.1.0)

ZipArchive::unchangeAllアーカイブに対するすべての変更を取り消す

説明

public ZipArchive::unchangeAll(): bool

アーカイブに対するすべての変更を取り消します。

パラメータ

この関数にはパラメータはありません。

戻り値

成功した場合に true を、失敗した場合に false を返します。

add a note

User Contributed Notes 1 note

up
0
mauro dot chojrin at leewayweb dot com
6 years ago
This should probably come without any surprise, but the changes can only be undone before close() is called...
To Top