PHP abs() 函数
PHP abs() 函数
实例
返回不同数的绝对值:
<?php
echo(abs(6.7) . "<br>");
echo(abs(-6.7) . "<br>");
echo(abs(-3) . "<br>");
echo(abs(3));
?>
echo(abs(6.7) . "<br>");
echo(abs(-6.7) . "<br>");
echo(abs(-3) . "<br>");
echo(abs(3));
?>
运行实例 »
定义和用法
abs() 函数返回一个数的绝对值。
语法
abs(number);
参数 | 描述 |
---|---|
number | 必需。规定一个数。如果数字的类型是浮点型,则返回的类型也是浮点型,否则将以整数形式返回。 |
技术细节
返回值: | number 的绝对值。 |
---|---|
返回类型: | Float / Integer |
PHP 版本: | 4+ |
PHP Math 参考手册
相关文章
- PHP echo 和 print 语句
- PHP 异常处理
- PHP array_chunk() 函数
- PHP array_pad() 函数
- PHP array_product() 函数
- PHP array_rand() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_unique() 函数
- PHP array_unshift() 函数
- PHP array_values() 函数
- PHP asort() 函数
- PHP current() 函数
- PHP extract() 函数
- PHP in_array() 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Libxml 函数
- PHP 5 Math 函数
- PHP 杂项 函数