blob: 8402ce54db2962d402718ca8345bde07da0481c3 (
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
|
--TEST--
Test wrong number of arguments for acosh()
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) == "WIN" )
die ("skip - function not supported on Windows");
?>
--FILE--
<?php
/*
* proto float acosh(float number)
* Function is implemented in ext/standard/math.c
*/
$arg_0 = 1.0;
$extra_arg = 1;
echo "\nToo many arguments\n";
var_dump(acosh($arg_0, $extra_arg));
echo "\nToo few arguments\n";
var_dump(acosh());
?>
--EXPECTF--
Too many arguments
Warning: acosh() expects exactly 1 parameter, 2 given in %s on line %d
NULL
Too few arguments
Warning: acosh() expects exactly 1 parameter, 0 given in %s on line %d
NULL
|