summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bcpow_error1.phpt
blob: 1075986587f30cd0f46bbd31d4e8a54c405274f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
bcpow() does not support non-integral exponents
--SKIPIF--
<?php
if (!extension_loaded('bcmath')) die('skip bcmath extension is not available');
?>
--FILE--
<?php
var_dump(bcpow('1', '1.1', 2));
?>
===DONE===
--EXPECTF--
Warning: bcpow(): non-zero scale in exponent in %s on line %d
string(1) "1"
===DONE===