Jump to content

[help] Generate Hash Code


aisatriani

Recommended Posts

please help ..

I have a function the following hashgenerate

 

<?php

function HashCode($val)
{
$maxInt     = 4294967295;
$maxPostInt = 2147483647;
$h = 0;

$value = String_to_ASCII($val);
for($i=0;$i<count($value);$i++)
{
$h = $h*31 + $value[$i];
if($h > $maxInt){
    $div = intval($h/($maxInt + 1));
    $h = $h - ($div * ($maxInt + 1));
}
if($h > $maxPostInt){
    
    $h = $h - $maxInt - $i;

}
}
return $h;
}

function String_to_ASCII($string)
{
$ascii = NULL;
$value = array();
for($i=0;$i < strlen($string);$i++)
{
array_push($value,ord($string[$i]));
}
return $value;
}



}

echo HashCode("JYeHn8Tu5donkey"));

?>

from the above function to generate strings will produce

JYeHn8Tu5donkey = -5.52888247115E+022
hello = 99162322

 

and i want to generate these JYeHn8Tu5donkey to generate numbers -22635908

 

function what is wrong?

 

please guidance

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.