Annotation of embedaddon/php/ext/zlib/tests/gzrewind_error.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Test function gzrewind() by calling it more than or less than its expected arguments
! 3: --SKIPIF--
! 4: <?php
! 5: if (!extension_loaded("zlib")) {
! 6: print "skip - ZLIB extension not loaded";
! 7: }
! 8: ?>
! 9: --FILE--
! 10: <?php
! 11:
! 12: $f = dirname(__FILE__)."/004.txt.gz";
! 13: $h = gzopen($f, 'r');
! 14: $extra_arg = 'nothing';
! 15: var_dump(gzrewind( $h, $extra_arg ) );
! 16: var_dump(gzrewind());
! 17: gzclose($h);
! 18:
! 19: ?>
! 20: ===DONE===
! 21: --EXPECTF--
! 22: Warning: gzrewind() expects exactly 1 parameter, 2 given in %s on line %d
! 23: bool(false)
! 24:
! 25: Warning: gzrewind() expects exactly 1 parameter, 0 given in %s on line %d
! 26: bool(false)
! 27: ===DONE===
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>