Zip 上下文選項列表

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);

?>

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *