mirror of
https://github.com/php/php-src.git
synced 2026-04-13 02:52:48 +02:00
Closes GH-5066 As a first step, let's capitalize their initial letter when it is applicable.
14 lines
302 B
PHP
14 lines
302 B
PHP
--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"
|