(PHP 4, PHP 5)
bcmod — Get modulus of an arbitrary precision number
Get the modulus of the left_operand using modulus .
The left operand, as a string.
The modulus, as a string.
Returns the modulus as a string, or NULL if modulus is 0.
Example #1 bcmod() example
<?phpecho bcmod('4', '2'); // 0echo bcmod('2', '4'); // 2?>