|
gmp_sqrtremSquare root with remainder Description
array gmp_sqrtrem
( GMP
$a
)Calculate the square root of a number, with remainder. Parameters
Return Values
Returns array where first element is the integer square root of
Examples
Example #1 gmp_sqrtrem example
<?php The above example will output: 3, 0 2, 3 1024, 0 |