gmp_mod

(PHP 4 >= 4.0.4, PHP 5)

gmp_modModulo operation

說明

GMP gmp_mod ( GMP $n , GMP $d )

Calculates n modulo d. The result is always non-negative, the sign of d is ignored.

參數

n

可以是一個 GMP 數據 resouce,或一個可以轉換為數值的字串。

d

The modulo that is being evaluated.

可以是一個 GMP 數據 resouce,或一個可以轉換為數值的字串。

回傳值

GMP 數值資源.

範例

Example #1 gmp_mod() example

<?php
$mod 
gmp_mod("8""3");
echo 
gmp_strval($mod) . "\n";
?>

上例將輸出:

2

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top