返回不同数的绝对值:
<?PHP echo(abs(6.7) . "<br>");echo(abs(-6.7) . "<br>"); echo(abs(-3) . "<br>"); echo(abs(3)); ?>
abs() 函数返回一个数的绝对值。
abs(number);