PHP sqrt() Function
In this chapter you will learn:
- Definition for PHP sqrt() Function
- Syntax for PHP sqrt() Function
- Parameter for PHP sqrt() Function
- Return for PHP sqrt() Function
- Example - Return the square root of different numbers
Definition
The sqrt()
function gets the square root of a number.
Syntax
PHP sqrt() Function has the following syntax.
float sqrt ( float num )
Parameter
Parameter | Description |
---|---|
number | Required. Specifies a number |
Return
Item | Value |
---|---|
Return Value | The square root of number, or NAN for negative numbers |
Return Type | Float |
Example
Return the square root of different numbers:
<?php// j a va 2s.c om
print sqrt(25);
print "\n";
print sqrt(26);
print "\n";
echo(sqrt(0) . "\n");
echo(sqrt(1) . "\n");
echo(sqrt(9) . "\n");
echo(sqrt(0.64) . "\n");
echo(sqrt(-9));
?>
The code above generates the following result.
Next chapter...
What you will learn in the next chapter:
- Definition for PHP srand() Function
- Syntax for PHP srand() Function
- Parameter for PHP srand() Function
- Return for PHP srand() Function
- Example - Seed the random number generator
Home » PHP Tutorial » PHP Math Functions