(PHP 7, PHP 8, PECL zip >= 1.13.0)
ZipArchive::setCompressionIndex — 设置由其索引定义的条目的压缩方法
设置由其索引定义的条目的压缩方法。
index
条目的索引。
method
压缩方法,是 ZipArchive::CM_*
常量之一。
compflags
压缩级别。
示例 #1 将使用不同压缩方法的文件添加到存档
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip', ZipArchive::CREATE);
if ($res === TRUE) {
$zip->addFromString('foo', 'Some text');
$zip->addFromString('bar', 'Some other text');
$zip->setCompressionIndex(0, ZipArchive::CM_STORE);
$zip->setCompressionIndex(1, ZipArchive::CM_DEFLATE);
$zip->close();
echo 'ok';
} else {
echo 'failed';
}
?>