summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bcpow_error2.phpt
blob: 49fd0b88d3dbc392b1472f1f2f65745527a8aef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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));
?>
===DONE===
--EXPECTF--
Warning: bcpow(): exponent too large in %s on line %d
string(4) "1.00"
===DONE===