(PHP 5 >= 5.6.0, PHP 7, PHP 8, PECL zip >= 1.12.4)
ZipArchive::getExternalAttributesIndex — 检索由其索引定义的条目的外部属性
$index
,&$opsys
,&$attr
,$flags
= 0检索由其索引定义的条目的外部属性。
index
条目的索引。
opsys
成功时,接收由 ZipArchive::OPSYS_ 常量之一定义的操作系统代码。
attr
成功时,接收外部属性。值取决于操作系统。
flags
如果 flags 设置为 ZipArchive::FL_UNCHANGED
,则返回原始未更改的属性。
此示例提取 ZIP 存档 test.zip 中的所有条目并设置来自外部属性的 Unix 权限。
示例 #1 提取所有带有 Unix 权限的条目
<?php
$zip = new ZipArchive();
if ($zip->open('test.zip') === TRUE) {
for ($idx=0 ; $s = $zip->statIndex($idx) ; $idx++) {
if ($zip->extractTo('.', $s['name'])) {
if ($zip->getExternalAttributesIndex($idx, $opsys, $attr)
&& $opsys==ZipArchive::OPSYS_UNIX) {
chmod($s['name'], ($attr >> 16) & 0777);
}
}
}
$zip->close();
echo "Ok\n";
} else {
echo "KO\n";
}
?>