PHP 8.2.32 Released!

Zip 上下文选项

Zip 上下文选项Zip 上下文选项列表

说明

Zip 上下文选项可用于 zip 包装器。

可选项

password

用于指定加密归档的密码。

更新日志

版本 说明
7.2.0,PECL zip 1.14.0 添加 password

示例

示例 #1 基础 password 用法示例

<?php
// 读取加密归档
$opts = array(
 'zip' => array(
 'password' => 'secret',
 ),
);
// 创建上下文...
$context = stream_context_create($opts);
// ...并且使用它读取数据
echo file_get_contents('zip://test.zip#test.txt', false, $context);
?>

发现了问题?

了解如何改进此页面提交拉取请求报告一个错误
+添加备注

用户贡献的备注

此页面尚无用户贡献的备注。

AltStyle によって変換されたページ (->オリジナル) /