php code:function UserId($email) { for($x=0, $i=0; $i < strlen($email); $i++){ $y = ord(substr($email, $i, 1)); $x *= 101; $x += $y; $x %= 4294967296; } return $x; }
php code:function get_msnid ($email){ $email = strtolower($email); for ($msnid=0,$i=0; $i < strlen($email); $i++) { $msnid *= 101; $msnid += ord($email[$i]); while($msnid >= pow(2,32)) $msnid -= pow(2,32); } return $msnid; }