Zip 上下文選項(xiàng)

Zip 上下文選項(xiàng)Zip 上下文選項(xiàng)列表

說明

Zip 上下文選項(xiàng)可用于 zip 包裝器。

可選項(xiàng)

password

用于指定加密歸檔的密碼。

更新日志

版本 說明
PHP 7.2.0, PECL zip 1.14.0 添加 password。

范例

示例 #1 基礎(chǔ) password 用法示例

<?php
// 讀取加密歸檔
$opts = array(
    
'zip' => array(
        
'password' => 'secret',
    ),
);
// 創(chuàng)建上下文...
$context stream_context_create($opts);

// ...并且使用它讀取數(shù)據(jù)
echo file_get_contents('zip://test.zip#test.txt'false$context);

?>