我尝试从从“/dev/urandom”读取的原始数据创建整数。但我不知道如何转换为整数。
<?php
//////////////////////////////////////////////////////////////////////////////
function base62_encode($val, $base=62, $chars='0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') {
if(!isset($base))
$base = strlen($chars);
$str = '';
do {
$m = bcmod($val, $base);
$str = $chars[$m] . $str;
$val = bcdiv(bcsub($val, $m), $base);
} while(bccomp($val,0)>0);
return $str;
}
//////////////////////////////////////////////////////////////////////////////
$file = fopen('/dev/urandom', 'rb');
if ( !$file ) {
throw new Exception('Error!');
} else {
$binary = fread($file, 4); // 4 bytes == 32 bits
fclose($file);
$dec = (int)$binary;
$base62 = base62_encode($dec);
fprintf(STDOUT, "dec:%d, %s\n", $dec, $base62);
}
//////////////////////////////////////////////////////////////////////////////
?>
作为输出,我得到:“dec:0, 0”
你可以在这里测试代码。