Overview
KB
Technical FAQ
PHP Manual
CSS2 Manual
HTML Manual
JS Guide
JS Reference
PhpDock Manual
Nu-Coder Manual
PhpExpress Manual
PHP Joomla
Development
Learn PHP
 
<bcdivbcmul>
Last updated: Tue, 19 Sep 2006

bcmod

(PHP 3, PHP 4, PHP 5)

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.

Examples

Example 1. bcmod() example

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

See Also

bcdiv().




<bcdivbcmul>
Last updated: Tue, 19 Sep 2006