%PDF- %PDF-
| Direktori : /opt/remi/nf-php74/root/usr/share/doc/pecl/zip/examples/ |
| Current File : //opt/remi/nf-php74/root/usr/share/doc/pecl/zip/examples/comment.php |
<?php
$z = new ZipArchive;
$z->open('test_with_comment.zip');
// Add "Foo Comment" as comment for the foo entry
$z->setCommentName('foo', 'Too Comment ' . time());
$z->close();