标题:
bcdiv和bcmul函数
[打印本页]
作者:
fangzhen
时间:
2009-6-17 15:36
标题:
bcdiv和bcmul函数
bcdiv
将二个高精确度数字相除
语法:
string bcdiv(string left operand, string right operand, int [scale]);
返回值:
字符串
函数种类:
数学运算 此函数将二个高精确度的数字相除,传入二个字符串,以左边的数字字符串 (left operand) 除以右边的 (right operand) 数字字符串。结果亦以字符串返回。scale 是一个可有可无的选项,表示返回值的?小数点后所需的位数。
echo
bcdiv
(
'105'
,
'6.55957'
,
3
);
// 16.007
?>
bcmul
将二个高精确度数字相乘。
语法:
string bcmul(string left operand, string right operand, int [scale]);
返回值:
字符串
函数种类:
数学运算 此函数将二个高精确度的数字相乘,传入二个字符串,以左边的数字字符串 (left operand) 乘以右边的 (right operand) 数字字符串。结果亦以字符串返回。scale 是一个可有可无的选项,表示返回值的?小数点后所需的位数。
echo
bcmul
(
'1.34747474747'
,
'35'
,
3
);
// 47.161
echo
bcmul
(
'2'
,
'4'
);
// 8
?>
欢迎光临 PHP开发笔记 (http://phpvi.com/)
Powered by Discuz! 6.1.0