(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';
}
?>