Result Size:
625 x 571
tryphp_func_math_abs.php:
<!DOCTYPE html> <html> <body> <?php echo(abs(6.7) . "<br>"); echo(abs(-6.7) . "<br>"); echo(abs(-3) . "<br>"); echo(abs(3)); ?> </body> </html>
6.7
6.7
3
3