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

?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top