美文网首页
PHP常用数学函数 - abs()

PHP常用数学函数 - abs()

作者: flyingfishzxf | 来源:发表于2017-09-12 14:41 被阅读0次

    abs() - 绝对值

    说明


    number abs ( mixed $number )
    

    返回参数number的绝对值

    参数


    number

    要处理的数字值

    返回值


    number的绝对值。如果参数numberfloat,则返回类型也是float,否则返回integer(因为float通常比integer有更大的取值范围)。

    范例


    <?php
    $abs = abs(-4.2); // $abs = 4.2; (double/float)
    $abs2 = abs(5);   // $abs2 = 5; (integer)
    $abs3 = abs(-5);  // $abs3 = 5; (integer)
    

    相关文章

      网友评论

          本文标题:PHP常用数学函数 - abs()

          本文链接:https://www.haomeiwen.com/subject/qgycsxtx.html