(PHP 4, PHP 5)
bcsqrt — دریافت ریشه عدد با دقت دلخواه
بازگرداندن ریشه operand.
عملوند به عنوان رشته.
This optional parameter is used to set the number of digits after the decimal place in the result. You can also set the global default scale for all functions by using bcscale().
بازگرداندن ریشه به عنوان رشته یا NULL اگر operand منفی باشد.
Example #1 مثال bcsqrt()
<?php
echo bcsqrt('2', 3); // 1.414
?>