The Absolute Value in PHP
To calculate the absolute value in PHP, the
function abs is used.
See the example:
<?php
echo abs(-15)
?>
Code execution result:
15
To calculate the absolute value in PHP, the
function abs is used.
See the example:
<?php
echo abs(-15)
?>
Code execution result:
15