ZipArchive::setArchiveFlag
(PHP >= 8.3.0, PECL zip >= 1.22.0)
ZipArchive::setArchiveFlag — Zip アーカイブのグローバルフラグを設定する
パラメータ
flag
-
変更するグローバルフラグ。 定数
AFL_*
から選びます。 value
-
フラグの新しい値。
例
例1 torrentzip アーカイブを作成する
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip', ZipArchive::CREATE);
if ($res === TRUE) {
$zip->setArchiveFlag(ZipArchive::AFL_WANT_TORRENTZIP, 1);
$zip->addFromString('test.txt', 'file content goes here');
$zip->close();
echo 'ok';
} else {
echo 'failed';
}
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google