You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
177 B

  1. <?php
  2. $z = new ZipArchive;
  3. $z->open('test_with_comment.zip');
  4. // Add "Foo Comment" as comment for the foo entry
  5. $z->setCommentName('foo', 'Too Comment ' . time());
  6. $z->close();