目录

PHP abs() 函数

❮ PHP 数学参考

示例

返回不同数字的绝对值:

<?php
echo(abs(6.7) . "<br>");
echo(abs(-6.7) . "<br>");
echo(abs(-3) . "<br>");
echo(abs(3));
?>
亲自试一试 »

定义和用法

abs() 函数返回数字的绝对(正)值。


语法

abs( number);

参数值

Parameter Description
number Required. Specifies a number. If the number is of type float, the return type is also float, otherwise it is integer

技术细节

返回值: 数字的绝对值
返回类型: 浮点数/整数
PHP 版本: 4+

❮ PHP 数学参考