(PHP 4, PHP 5, PHP 7)
bcmod — Modulo zweier Zahlen mit beliebiger Genauigkeit
$left_operand
, string $modulus
)
Liefert den Modulo des left_operand
unter Verwendung
von modulus
.
left_operand
Der linke Operand in Stringform.
modulus
Der Modulo-Wert in Stringform.
Gibt den Modulo als String zurück. Ist modulus
0,
wird NULL
zurückgegeben.
Beispiel #1 bcmod()-Beispiel
<?php
echo bcmod('4', '2'); // 0
echo bcmod('2', '4'); // 2
?>