downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ZipArchive::getCommentName> <ZipArchive::getArchiveComment
[edit] Last updated: Fri, 24 Jun 2011

view this page in

ZipArchive::getCommentIndex

(PHP 5 >= 5.2.0, PECL zip >= 1.4.0)

ZipArchive::getCommentIndexبازگرداندن توضیح ورودی با استفاده از اندیس ورودی

Description

string ZipArchive::getCommentIndex ( int $index [, int $flags ] )

بازگرداندن توضیح ورودی با استفاده از اندیس ورودی.

Parameters

index

اندیس ورودی

flags

اگر پرچم‌ها برابر با ZIPARCHIVE::FL_UNCHANGEDباشد توضیح اصلی بدون تغییر بازگردانده می‌شود.

Return Values

بازگرداندن توضیج در صورت موفقیت or FALSE on failure.

Examples

Example #1 کپی توضیح ورودی

<?php
$zip 
= new ZipArchive;
$res $zip->open('test1.zip');
if (
$res === TRUE) {
    
var_dump($zip->getCommentIndex(1));
} else {
    echo 
'failed, code:' $res;
}
?>


add a note add a note User Contributed Notes ZipArchive::getCommentIndex - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites