(PHP 3, PHP 4 )
Get the modulus of the left_operand using modulus.
例子 1. bcmod() example
<?phpecho bcmod(4, 2) . "\n";echo bcmod(2, 4);?>
The above example will output:
0 2
See also bcdiv().