ZipArchive::getCommentIndex
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.4.0)
ZipArchive::getCommentIndex — エントリのインデックスを使用して、エントリのコメントを返す
説明
エントリのインデックスを使用して、エントリのコメントを返します。
戻り値
成功した場合にコメント、失敗した場合に false
を返します。
例
例1 エントリのコメントの出力
<?php
$zip = new ZipArchive;
$res = $zip->open('test1.zip');
if ($res === TRUE) {
var_dump($zip->getCommentIndex(1));
} else {
echo '失敗、コード:' . $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