Forum und email

gmp_mul

(PHP 4 >= 4.0.4, PHP 5)

gmp_mul — 数値を乗算する

説明

resource gmp_mul ( resource $a , resource $b )

ab をかけ、 結果を返します。

パラメータ

a

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.

b

a に掛ける数。

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 GMP number resource.

Example#1 gmp_mul() の例

<?php
$mul 
gmp_mul("12345678""2000");
echo 
gmp_strval($mul) . "\n";
?>

上の例の出力は以下となります。

24691356000