Answers for "php is negative"

PHP
1

php if negative make positive

<?php
echo(abs(6.7) . "<br>");
echo(abs(-6.7) . "<br>");
echo(abs(-3) . "<br>");
echo(abs(3));
?>
Posted by: Guest on November-18-2020

Browse Popular Code Answers by Language