$a = 116278458266472831;
echo intval($a/64); // 1816850910413638
echo intdiv($a, 64); //1816850910413637
when I calculate radix of a big number, I found some error, result of intval($a/64) is greater than intdiv($a, 64), could you tell me why ? maybe also you will write the deep reason, thanks a lot.