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';
}
?>
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top