<?php
/**
* my_bcmod - 获取模数(bcmod 的替代品)
* string my_bcmod ( string left_operand, int modulus )
* left_operand 可以非常大,但要注意 modulus :(
* by Andrius Baranauskas 和 Laurynas Butkus :) 立陶宛维尔纽斯
**/
function my_bcmod( $x, $y )
{
// 每次取多少个数字?注意不要超过 (int)
$take = 5;
$mod = '';
do
{
$a = (int)$mod.substr( $x, 0, $take );
$x = substr( $x, $take );
$mod = $a % $y;
}
while ( strlen($x) );
return (int)$mod;
}
// 示例
echo my_bcmod( "7044060001970316212900", 150 );
?>