mirror of
https://github.com/php/php-src.git
synced 2026-04-04 22:52:40 +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
263 B
PHP
19 lines
263 B
PHP
--TEST--
|
|
bcsqrt() function
|
|
--EXTENSIONS--
|
|
bcmath
|
|
--INI--
|
|
bcmath.scale=0
|
|
--FILE--
|
|
<?php
|
|
echo bcsqrt("9"),"\n";
|
|
echo bcsqrt("9.444", 2),"\n";
|
|
echo bcsqrt("1928372132132819737213", 5),"\n";
|
|
echo bcsqrt("0.5", 5), "\n";
|
|
?>
|
|
--EXPECT--
|
|
3
|
|
3.07
|
|
43913234134.28826
|
|
0.70710
|