©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PHP 4 >= 4.0.4, PHP 5, PHP 7)
gmp_mod — Modulo operation
$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