ZipArchive::getCommentName

(no version information, might be only in CVS)

ZipArchive::getCommentName -- エントリ名を使用して、エントリのコメントを返す

説明

string ZipArchive::getCommentName ( string name [, int flags] )

エントリ名を使用して、エントリのコメントを返します。

パラメータ

name

エントリの名前。

flags

ZIPARCHIVE::FL_UNCHANGED を指定すると、 元の変化していないコメントが返されます。

返り値

成功した場合にコメント、失敗した場合に FALSE を返します。

例 1. エントリのコメントの出力

<?php
$zip
= new ZipArchive;
$res = $zip->open('test1.zip')
if (
$res === TRUE) {
    
var_dump($zip->getCommentName('test/entry1.txt'));
} else {
    echo
'失敗、コード:' . $res;
}
?>