
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Square Root Function in PHP
The sqrt() function Returns the square root of a number.
Syntax
sqrt(num)
Parameters
num − The number for which you want to find the square root
Return
The sqrt() function Returns the square root of the specified number.
Example
<?php echo(sqrt(16)); ?>
Output
4
Example
Let us see another example −
<?php echo(sqrt(0.25) . "<br>"); ?>
Output
0.5<br>
Example
Let us see another example −
<?php echo(sqrt(-144)); ?>
Output
NAN
Advertisements