php-src/ext/standard/tests/math/pow_error.phpt

18 lines
330 B
Plaintext
Raw Normal View History

2008-02-06 08:39:23 +00:00
--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