mh. aber Math::BigInt bzw. use bigint bringt auch nicht das gewünschte Ergebnis:
use Math::BigInt;
$x = Math::BigInt->new("4653896912");
$x->brsft("13");
print $x->bstr;
bringt: 568102
aber in php:
<?
echo (4653896912 >> 13);
?>
bringt 43814.
any ideas?