PHP में, bcsqrt() फ़ंक्शन का उपयोग मनमानी सटीक संख्या का वर्गमूल प्राप्त करने के लिए किया जाता है। यह मनमाने ढंग से सटीक संख्या को एक स्ट्रिंग के रूप में स्वीकार करता है और परिणाम को निर्दिष्ट परिशुद्धता तक स्केल करने के बाद संख्या का वर्गमूल देता है।
सिंटैक्स
string bcsqrt($num_string, $scale)
पैरामीटर
bcsqrt() फ़ंक्शन दो अलग-अलग पैरामीटर स्वीकार करता है:$num_string और $स्केल ।
-
$num_string - यह उस संख्या का प्रतिनिधित्व करता है जिसका वर्गमूल मूल्यांकन किया जाना है। यह एक स्ट्रिंग-प्रकार का पैरामीटर है।
-
$स्केल - यह आउटपुट में दशमलव बिंदु के बाद आने वाले अंकों की संख्या को दर्शाता है।
रिटर्न वैल्यू
bcsqrt() फ़ंक्शन संख्या के वर्गमूल को एक स्ट्रिंग के रूप में लौटाता है।
उदाहरण 1
<?php // input numbers with arbitrary precision $num_string = "22"; // below bcsqrt function calculates the square root $result= bcsqrt($num_string); echo "Output without scale value: ", $result; ?>
आउटपुट
Output without scale value: 4
उदाहरण 2
<?php // input numbers with arbitrary precision $num_string = "22"; //scale value 3 $scale="3"; // below bcsqrt function calculates the square root $result= bcsqrt($num_string, $scale); echo "Output with scale value: ", $result; ?>
आउटपुट
Output with scale value: 4.690