PharData::__construct
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL phar >= 2.0.0)
PharData::__construct — 実行可能でない tar あるいは zip アーカイブオブジェクトを作成する
説明
パラメータ
filename
-
既存の tar/zip アーカイブあるいは作成したいアーカイブへのパス。
flags
-
親クラス Phar の RecursiveDirectoryIterator に渡すフラグ。
alias
-
この Phar アーカイブをストリーム機能からコールするときに使うエイリアス。
format
-
Phar クラスの ファイルフォーマット定数 のいずれか。
エラー / 例外
2 度コールされた場合に BadMethodCallException、 phar アーカイブのオープンに失敗した場合に UnexpectedValueException をスローします。
例
例1 PharData::__construct() の例
<?php
try {
$p = new PharData('/path/to/my.tar', Phar::CURRENT_AS_FILEINFO | Phar::KEY_AS_FILENAME);
} catch (UnexpectedValueException $e) {
die('Could not open my.tar');
} catch (BadMethodCallException $e) {
echo 'technically, this cannot happen';
}
echo file_get_contents('phar:///path/to/my.tar/example.txt');
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google