Contact: aviboots(AT)netvision.net.il
39,938 questions
51,875 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 */