xref: /PHP-5.5/ext/zlib/tests/gzeof_error.phpt (revision 8f9ec423)
1--TEST--
2Test function gzeof() by calling it more than or less than its expected arguments
3--SKIPIF--
4<?php
5if (!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';
15var_dump(gzeof( $h, $extra_arg ) );
16var_dump(gzeof() );
17gzclose($h)
18
19?>
20===DONE===
21--EXPECTF--
22
23Warning: gzeof() expects exactly 1 parameter, 2 given in %s on line %d
24bool(false)
25
26Warning: gzeof() expects exactly 1 parameter, 0 given in %s on line %d
27bool(false)
28===DONE===