summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/pow_error.phpt
blob: 5c473b6ebaa93a700c95e64cbb658f700cc5ff32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Test pow() - wrong params test pow()
--INI--
precision=14
--FILE--
<?php
pow();
pow(36);
pow(36,4,true);
?>
--EXPECTF--
Warning: pow() expects exactly 2 parameters, 0 given in %s line 2

Warning: pow() expects exactly 2 parameters, 1 given in %s line 3

Warning: pow() expects exactly 2 parameters, 3 given in %s line 4