PHP8 ZipArchive::setCompressionIndex
(PHP 7, PHP 8, PECL zip >= 1.13.0)
ZipArchive::setCompressionIndex — 设置由其索引定义的条目的压缩方法
说明
public ZipArchive::setCompressionIndex(int $index, int $method, int $compflags = 0): bool
设置由条目索引定义的条目的压缩方法。
参数
index
条目的索引。
method
压缩方法,
ZipArchive::CM_*
常量之一。compflags
压缩级别。
返回值
成功时返回 true, 或者在失败时返回 false。
示例
示例 #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';
}
?>