convert negative to positive php code example
Example 1: php absolute value
abs ( mixed $number ) : number
Example 2: php if negative make positive
<?php
echo(abs(6.7) . "<br>");
echo(abs(-6.7) . "<br>");
echo(abs(-3) . "<br>");
echo(abs(3));
?>