September 2001
Intermediate to advanced
768 pages
32h 45m
English
string bcdiv(string left_operand, string right_operand, [int scale])
| left_operand | Number to divide |
| right_operand | Number to divide by |
| scale | Number of decimal places to return |
Divides a value by another value.
Returns:
Division result
Description:
bcdiv() divides the first number by the second number and returns the result, formatted with a specified number of decimal places (optional).
Version:
Existing since version 3.0
Example:
$num1 = "9912343.34546";
$num2 = "34546.9912343";
echo bcdiv($num2,$num1,10);
Output:
0.0034852496
|
Read now
Unlock full access