Lines Matching refs:expm1
2 Test expm1() - Error conditions
7 function_exists('expm1') or die('skip expm1() is not supported in this build.');
11 /* Prototype : float expm1 ( float $arg )
17 echo "*** Testing expm1() : error conditions ***\n";
19 echo "\n-- Testing expm1() function with less than expected no. of arguments --\n";
20 expm1();
21 echo "\n-- Testing expm1() function with more than expected no. of arguments --\n";
22 expm1(23,true);
27 *** Testing expm1() : error conditions ***
29 -- Testing expm1() function with less than expected no. of arguments --
31 Warning: expm1() expects exactly 1 parameter, 0 given in %s on line %d
33 -- Testing expm1() function with more than expected no. of arguments --
35 Warning: expm1() expects exactly 1 parameter, 2 given in %s on line %d