diff options
Diffstat (limited to 'ext/zip/tests/zip_entry_read.phpt')
-rw-r--r-- | ext/zip/tests/zip_entry_read.phpt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ext/zip/tests/zip_entry_read.phpt b/ext/zip/tests/zip_entry_read.phpt new file mode 100644 index 0000000..d876f03 --- /dev/null +++ b/ext/zip/tests/zip_entry_read.phpt @@ -0,0 +1,19 @@ +--TEST-- +zip_entry_read() function +--SKIPIF-- +<?php +/* $Id$ */ +if(!extension_loaded('zip')) die('skip'); +?> +--FILE-- +<?php +$zip = zip_open(dirname(__FILE__)."/test_procedural.zip"); +$entry = zip_read($zip); +if (!zip_entry_open($zip, $entry, "r")) die("Failure"); +echo zip_entry_read($entry); +zip_entry_close($entry); +zip_close($zip); + +?> +--EXPECT-- +foo |