A C++ fork/rewrite of the smhasher project to bring Murmurhash3 to the Linux shell and to the PHP scripting language.
git clone https://github.com/sgtsquiggs/MurmurHash3PHP.git
cd MurmurHash3PHP
phpize
./configure --enable-murmurhash3
make installMurmurHash is not cryptographically secure, so I am just using rand()
int seed = rand();
// 681830476 for this exampleGenerates a 128 bit hash.
echo murmurhash3_128('this is the key for my 128 bit hash', seed);
// 476d1835de8c85f3f6686e7f68ac515aGenerates a 32 bit hash.
echo murmurhash3_32('this is the key for my 32 bit hash', seed);
// 9853e119Alias of murmurhash3_128.