Movatterモバイル変換


[0]ホーム

URL:


PHP 8.5.0 Alpha 2 available for testing
    floor »
    « expm1

    fdiv

    (PHP 8)

    fdivDivides two numbers, according to IEEE 754

    Description

    fdiv(float$num1,float$num2):float

    Returns the floating point result of dividing thenum1 by thenum2. If thenum2 is zero, then one ofINF, -INF, orNAN will be returned.

    Note that in comparisons,NAN will never be equal (==) or identical (===) to any value, including itself.

    Parameters

    num1

    The dividend (numerator)

    num2

    The divisor

    Return Values

    The floating point result ofnum1/num2

    Examples

    Example #1 Usingfdiv()

    <?php
    var_dump
    (fdiv(5.7,1.3));// float(4.384615384615385)
    var_dump(fdiv(4,2));// float(2)
    var_dump(fdiv(1.0,0.0));// float(INF)
    var_dump(fdiv(-1.0,0.0));// float(-INF)
    var_dump(fdiv(0.0,0.0));// float(NAN)
    ?>

    See Also

    • Division operator/
    • intdiv() - Integer division - Integer division
    • fmod() - Returns the floating point remainder (modulo) of the division of the arguments
    • fpow() - Raise one number to the power of another, according to IEEE 754

    Found A Problem?

    Learn How To Improve This PageSubmit a Pull RequestReport a Bug
    add a note

    User Contributed Notes

    There are no user contributed notes for this page.
    To Top
    and to navigate •Enter to select •Esc to close
    PressEnter without selection to search using Google

    [8]ページ先頭

    ©2009-2025 Movatter.jp