|
|
PHP absolute value : abs()Using abs math function we can get absolute value of any number
Here are some examples
echo abs(-6.2); // Output 6.2
echo "<br>";
echo abs(-4); // Output 4
echo "<br>";
echo abs(3.2); // Output 3.2
echo "<br>";
echo abs(7); // Output 7
|
| |
|
|
|
|
|