PHP bcmod function

bcmod

(PHP 3, PHP 4, PHP 5)

bcmod -- Get modulus of an arbitrary precision numberDescriptionstring 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.


Return Values

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

Examples

Example 1. bcmod() example

echo bcmod('4', '2'); // 0
echo bcmod('2', '4'); // 2

See Also

bcdiv()


These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • Reddit
  • Furl
  • NewsVine
  • Simpy
  • Slashdot
  • Spurl
  • StumbleUpon
  • YahooMyWeb
  • TailRank
  • Technorati

Home | PHP Functions | PHP bcmod function