lastguest / murmurhash-php

PHP userland implementation of MurmurHash3
MIT License
128 stars 37 forks source link

Does this php file support php5? #7

Closed KashingLiu closed 6 years ago

KashingLiu commented 6 years ago

Does php5 have murmurhash support?

lastguest commented 6 years ago

No, you shouldn’t use PHP5 anymore.

However, adapting the code for that is trivial, just remove the declare statement and the function return types.

You are free to open a fork if you really need that old support.