xref: /PHP-5.6/ext/zlib/tests/gztell_error.phpt (revision 8f9ec423)
1--TEST--
2Test function gztell() 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$f = dirname(__FILE__)."/004.txt.gz";
12$h = gzopen($f, 'r');
13$extra_arg = 'nothing';
14var_dump(gztell( $h, $extra_arg ) );
15var_dump(gztell());
16gzclose($h);
17?>
18===DONE===
19--EXPECTF--
20
21Warning: gztell() expects exactly 1 parameter, 2 given in %s on line %d
22bool(false)
23
24Warning: gztell() expects exactly 1 parameter, 0 given in %s on line %d
25bool(false)
26===DONE===