ZipArchive::setCompressionIndex
(PHP 7, PHP 8, PECL zip >= 1.13.0)
ZipArchive::setCompressionIndex — Set the compression method of an entry defined by its index
说明
Set the compression method of an entry defined by its index.
参数
- index
- 
      Index of the entry. 
- method
- 
      The compression method, one of the ZipArchive::CM_*constants.
- compflags
- 
      Compression level. 
示例
示例 #1 Add files with different compression methods to an archive
<?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';
}
?>
  +添加备注
  
 用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/ziparchive.setcompressionindex.php