Contact: aviboots(AT)netvision.net.il
40,859 questions
53,264 answers
573 users
// string bcpowmod(string $left_operand , string $right_operand , // string $modulus [, int $scale = 0 ]) echo bcpowmod(2, 3, 3) . "<br />"; // 8 % 3 echo bcmod(bcpow(2, 3), 3) . "<br />"; // 8 % 3 /* run: 2 2 */