summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/acos_error.phpt
blob: 6a9dd909a528d41464f573f34326a244b1148499 (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
--TEST--
Test wrong number of arguments for acos()
--FILE--
<?php
/*
 * proto float acos(float number)
 * Function is implemented in ext/standard/math.c
*/

$arg_0 = 1.0;
$extra_arg = 1;

echo "\nToo many arguments\n";
var_dump(acos($arg_0, $extra_arg));

echo "\nToo few arguments\n";
var_dump(acos());

?>
--EXPECTF--
Too many arguments

Warning: acos() expects exactly 1 parameter, 2 given in %s on line %d
NULL

Too few arguments

Warning: acos() expects exactly 1 parameter, 0 given in %s on line %d
NULL