ZipArchive::setCommentName
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.4.0)
ZipArchive::setCommentName — 名前を使用してエントリのコメントを設定する
パラメータ
name
-
エントリの名前。
comment
-
コメントの内容。
例
例1 アーカイブをオープンし、エントリのコメントを設定する
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip');
if ($res === TRUE) {
$zip->setCommentName('entry1.txt', '新しいエントリのコメント');
$zip->close();
echo '成功';
} else {
echo '失敗';
}
?>
+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