Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
function customHash($key, $salt="Genius")
{
	$key +.= $salt;
	return hash( "crc32b", $key);
}

$key = "Chun Kang";
echo customHash("crc32b", $key);

...