php-src/ext/standard/tests/math/atanh_error.phpt
Kalle Sommer Nielsen f914d50dd6 Implemented Windows support for asinh(), acosh(), atanh(), log1p() and expm1() + removed Windows check on tests
[DOC] Windows support for asinh(), acosh(), atanh(), log1p() and expm1()
2008-05-05 06:28:03 +00:00

30 lines
518 B
PHP

--TEST--
Test wrong number of arguments for atanh()
--FILE--
<?php
/*
* proto float atanh(float number)
* Function is implemented in ext/standard/math.c
*/
$arg_0 = 1.0;
$extra_arg = 1;
echo "\nToo many arguments\n";
var_dump(atanh($arg_0, $extra_arg));
echo "\nToo few arguments\n";
var_dump(atanh());
?>
--EXPECTF--
Too many arguments
Warning: atanh() expects exactly 1 parameter, 2 given in %s on line 11
NULL
Too few arguments
Warning: atanh() expects exactly 1 parameter, 0 given in %s on line 14
NULL