mirror of
https://github.com/php/php-src.git
synced 2026-04-19 22:11:12 +02:00
For rationale, see https://github.com/php/php-src/pull/6787 Extensions migrated in this part: * bcmath * bz2 * calendar * com_dotnet * ctype Closes GH-6797.
19 lines
261 B
PHP
19 lines
261 B
PHP
--TEST--
|
|
bcpow() function
|
|
--EXTENSIONS--
|
|
bcmath
|
|
--INI--
|
|
bcmath.scale=0
|
|
--FILE--
|
|
<?php
|
|
echo bcpow("1", "2"),"\n";
|
|
echo bcpow("-2", "5", 4),"\n";
|
|
echo bcpow("2", "64"),"\n";
|
|
echo bcpow("-2.555", "5", 2),"\n";
|
|
?>
|
|
--EXPECT--
|
|
1
|
|
-32.0000
|
|
18446744073709551616
|
|
-108.88
|