geekery, with a chance of cats, cycling and hifi
<?php $one = 1; $big = 4294967297; $mod = sprintf("%u", $big); $a = ( $one == $mod ) ? 64 : 32; echo $a. "\n";?>
Fine. But it should be$a = ( $one == $mod ) ? 32 : 64;shouldn't it?
echo PHP_INT_SIZE;
Post a comment
2 comments:
Fine. But it should be
$a = ( $one == $mod ) ? 32 : 64;
shouldn't it?
echo PHP_INT_SIZE;
Post a comment