summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/gzwrite_error.phpt
blob: b77c648696a7dfea1b29fa6e810868682d264002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
--TEST--
Test function gzwrite() by calling it more than or less than its expected arguments
--SKIPIF--
<?php 
if (!extension_loaded("zlib")) {
	print "skip - ZLIB extension not loaded"; 
}
?>
--FILE--
<?php
$filename = "temp.txt.gz";
$h = gzopen($filename, 'w');
$str = "Here is the string to be written. ";
$length = 10;
$extra_arg = 'nothing'; 
var_dump(gzwrite($h, $str, $length, $extra_arg));
var_dump(gzwrite($h));
var_dump(gzwrite());

gzclose($h);
unlink($filename);

?>
===DONE===
--EXPECTF--

Warning: Wrong parameter count for gzwrite() in %s on line %d
NULL

Warning: Wrong parameter count for gzwrite() in %s on line %d
NULL

Warning: Wrong parameter count for gzwrite() in %s on line %d
NULL
===DONE===