You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

PHP provides a simple function can hash in 32bits - hash( $algorithm, $key) - it will provide 8 bytes string as hash result.

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


  • No labels