bcadd PHP 3.0

string bcadd(string left_operand, string right_operand[, int scale])

 

2 つの任意精度数の合計を返します。

bccomp PHP 3.0

string bccomp(string left_operand, string right_operand[, int scale])

 

2 つの任意精度数を比較します。

bcdiv PHP 3.0

string bcdiv(string left_operand, string right_operand[, int scale])

 

2 つの任意精度数の商を返します (除算)。

bcmod PHP 3.0

string bcmod(string left_operand, string right_operand)

 

2 つの任意精度オペランドのモジュロを返します。

bcmul PHP 3.0

string bcmul(string left_operand, string right_operand[, int scale])

 

2 つの任意精度数の積を返します。

bcpow PHP 3.0

string bcpow(string x, string y[, int scale])

 

任意精度数を別の任意精度数乗した値を返します。

bcscale PHP 3.0

string bcscale(int scale)

 

すべての BC 演算関数のデフォルトのスケールパラメータを設定します。

bcsqrt PHP 3.0

string bcsqrt(string operand[, int scale])

 

任意精度数の平方根を返します。

bcsub PHP 3.0

string bcsub(string left_operand, string right_operand[, int scale])

 

2 つの任意精度数の差を返します。