bcmod

(PHP 4, PHP 5, PHP 7)
Get modulus of an arbitrary precision number
string bcmod ( string $left_operand, string $modulus )

Get the modulus of the left_operand using modulus.

Parameters:
left_operand

The left operand, as a string.

modulus

The modulus, as a string.

Returns:

Returns the modulus as a string, or NULL if modulus is 0.

Examples:
bcmod() example
1
2
3
4
<?php
echo bcmod('4''2'); // 0
echo bcmod('2''4'); // 2
?>
See also:

bcdiv() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.