(PHP 4 >= 4.0.4, PHP 5)
gmp_mul — 数値を乗算する
a と b をかけ、 結果を返します。
b を掛けられる数。
It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.
a に掛ける数。
A GMP number resource.
Example#1 gmp_mul() の例
<?php$mul = gmp_mul("12345678", "2000");echo gmp_strval($mul) . "\n";?>
上の例の出力は以下となります。
24691356000