summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bcpow_error2.phpt
blob: ca13875ed3c7db8636864cdf00ae0b241640ad36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
bcpow() does not support exponents >= 2**63
--SKIPIF--
<?php
if (!extension_loaded('bcmath')) die('skip bcmath extension is not available');
?>
--FILE--
<?php
var_dump(bcpow('0', '9223372036854775808', 2));
?>
--EXPECTF--
Warning: bcpow(): exponent too large in %s on line %d
string(4) "1.00"