The abs Function
The abs
function calculates the absolute value of a number,
turning a negative into a positive.
Syntax
abs(number);
Example
Let's find the absolute value of the number -15
:
<?php
echo abs(-15);
?>
Code execution result:
15