summaryrefslogtreecommitdiff
path: root/ext/zip/examples/comment.php
blob: 90b37d3795c0426122df1d96b17bda482b5b7fe4 (plain)
1
2
3
4
5
6
<?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();