fdiv
PHP 8
fdiv - Divides two numbers, according to IEEE 754
fdiv(
float$num1,
float$num2 ): float
Returns the floating point result of dividing the num1 by the num2. If the num2 is zero, then one of INF, -INF, or NAN will be returned.
Note that in comparisons, NAN will never ==
or ===
,
any value, including itself.
Parameters
- num1
-
The dividend (numerator)
- num2
-
The divisor
Return Values
The floating point result of num1/num2