mirror of
https://github.com/php/php-src.git
synced 2026-04-25 17:08:14 +02:00
56f90492d6
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.
13 lines
131 B
PHP
13 lines
131 B
PHP
--TEST--
|
|
bcsqrt() with argument of 0
|
|
--EXTENSIONS--
|
|
bcmath
|
|
--INI--
|
|
bcmath.scale=0
|
|
--FILE--
|
|
<?php
|
|
echo bcsqrt("0");
|
|
?>
|
|
--EXPECT--
|
|
0
|