
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
ABS Function in PHP
The abs() function returns the absolute value of a number.
Syntax
abs(num)
Parameters
num − The number for which we want to get the absolute value. If the num is float, then the return type will be float, otherwise it is an integer.
Return
The abs() function returns the absolute value of the specified number.
Example
<?php echo(abs(3.1) . "<br>"); echo(abs(-9.7) . "<br>"); ?>
Output
3.1<br>9.7<br>
Let us see another example −
Example
<?php echo(abs(20) . "<br>"); echo(abs(-50) . "<br>"); ?>
Output
20<br>50<br>
Advertisements