   #PHP Manual BCMath Arbitrary Precision Mathematics Functions bcdiv
   bcmul

   PHP Manual
   Prev  Next
   ______________________________________________________________________

                                     bcmod

   (PHP 3, PHP 4 )
   bcmod --  Get modulus of an arbitrary precision number

Description

   string bcmod ( string left_operand, string modulus)

   Get the modulus of the left_operand using modulus.

   Example 1. bcmod() example
   <?php
   echo bcmod(4, 2) . "\n";
   echo bcmod(2, 4);
   ?>

   The above example will output:
0
2

   See also bcdiv().
   ______________________________________________________________________

   Prev  Home  Next
   bcdiv  Up  bcmul
