Funcții matematice BC
PHP Manual

bcmod

(PHP 4, PHP 5, PHP 7)

bcmodGet modulus of an arbitrary precision number

Descrierea

string bcmod ( string $left_operand , string $modulus )

Get the modulus of the left_operand using modulus.

Parametri

left_operand

The left operand, as a string.

modulus

The modulus, as a string.

Valorile întoarse

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

Exemple

Example #1 bcmod() example

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

A se vedea și


Funcții matematice BC
PHP Manual