Forum und email

gmp_cmp

(PHP 4 >= 4.0.4, PHP 5)

gmp_cmp — 数を比較する

説明

int gmp_cmp ( resource $a , resource $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.

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 > b の場合に正の値、a = b の場合にゼロ、a < b の場合に負の値を返します。

Example#1 gmp_cmp() の例

<?php
$cmp1 
gmp_cmp("1234""1000"); // より大きい
$cmp2 gmp_cmp("1000""1234"); // より小さい
$cmp3 gmp_cmp("1234""1234"); // 等しい

echo "$cmp1 $cmp2 $cmp3\n";
?>

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

1 -1 0