PHP8 ZipArchive::setExternalAttributesName
(PHP 5 >= 5.6.0, PHP 7, PHP 8, PECL zip >= 1.12.4)
ZipArchive::setExternalAttributesName — 设置由其名称定义的条目的外部属性
说明
public ZipArchive::setExternalAttributesName(
string $name,
int $opsys,
int $attr,
int $flags = 0
): bool
设置由条目名称定义的条目的外部属性。
参数
name
条目的名称。
opsys
由 ZipArchive::OPSYS_ 常量之一定义的操作系统代码。
attr
外部属性。值取决于操作系统。
flags
可选标志。目前未使用。
返回值
成功时返回 true, 或者在失败时返回 false。
示例
此示例打开一个 ZIP 文件存档并添加 具有其 Unix 权限作为外部属性的文件。test.ziptest.txt
示例 #1 Archive a file, with its Unix rights
<?php
$zip = new ZipArchive();
$stat = stat($filename='test.txt');
if (is_array($stat) && $zip->open('test.zip', ZipArchive::CREATE) === TRUE) {
$zip->addFile($filename);
$zip->setExternalAttributesName($filename, ZipArchive::OPSYS_UNIX, $stat['mode'] << 16);
$zip->close();
echo "Ok\n";
} else {
echo "KO\n";
}
?>