ZipArchive::getArchiveFlag
(PHP >= 8.3.0, PECL zip >= 1.22.0)
ZipArchive::getArchiveFlag — Zip アーカイブのグローバルフラグの値を返す
パラメータ
flag
-
取得するグローバルフラグ。 以下の定数
AFL_*
から選びます: flags
-
flags
がZipArchive::FL_UNCHANGED
に設定された場合、 もともと設定されていた値が返されます。
戻り値
アーカイブにフラグが設定されている場合は、1 を返します。 設定されていない場合は 0 を返します。 エラーが発生した場合は -1 を返します。
例
例1 アーカイブが torrentzip フォーマットかを調べる
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip');
if ($res === TRUE) {
var_dump($zip->getArchiveFlag(ZipArchive::AFL_IS_TORRENTZIP));
} else {
echo 'failed, code:' . $res;
}
?>
+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