summaryrefslogtreecommitdiff
path: root/ext/zip/examples/comment.php
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zip/examples/comment.php')
-rw-r--r--ext/zip/examples/comment.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/zip/examples/comment.php b/ext/zip/examples/comment.php
deleted file mode 100644
index 90b37d3795..0000000000
--- a/ext/zip/examples/comment.php
+++ /dev/null
@@ -1,6 +0,0 @@
-<?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();