BC Math Funktionen
PHP Manual

bcmod

(PHP 4, PHP 5, PHP 7)

bcmodModulo zweier Zahlen mit beliebiger Genauigkeit

Beschreibung

string bcmod ( string $left_operand , string $modulus )

Liefert den Modulo des left_operand unter Verwendung von modulus.

Parameter-Liste

left_operand

Der linke Operand in Stringform.

modulus

Der Modulo-Wert in Stringform.

Rückgabewerte

Gibt den Modulo als String zurück. Ist modulus 0, wird NULL zurückgegeben.

Beispiele

Beispiel #1 bcmod()-Beispiel

<?php
echo bcmod('4''2'); // 0
echo bcmod('2''4'); // 2
?>

Siehe auch


BC Math Funktionen
PHP Manual