Zip 上下文选项

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

描述

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

选项

password

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

变更日志

版本 描述
PHP 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);

?>

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top