lastguest / murmurhash
MurmurHash3 Hash
Installs: 5 111 080
Dependents: 52
Suggesters: 0
Security: 0
Stars: 128
Watchers: 10
Forks: 37
Open Issues: 4
Requires
- php: ^7||^8.0
Requires (Dev)
- phpstan/phpstan: ^0.12
- phpunit/phpunit: ^7||^9
README
PHP Implementation of MurmurHash3
More information about these algorithms can be found at:
Porting of the MurmurHash3 JavaScript version created by Gary Court (https://github.com/garycourt/murmurhash-js)
Installation
Use composer :
composer require lastguest/murmurhash
Usage
You can retrieve an hash via hash3
static method of class Murmur
<?php use lastguest\Murmur; echo Murmur::hash3("Hello World"); // cnd0ue
You can pass a precise seed positive integer as second parameter
<?php use lastguest\Murmur; echo Murmur::hash3("Hello World", 1234567); // qtq2u
If you need the integer hash, use the hash3_int
method
<?php use lastguest\Murmur; echo Murmur::hash3_int("Hello World"); // 427197390