PHP8 ZipArchive::setCompressionIndex

2024-02-27 11:09 更新

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


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号