vinkla / hashids

A small PHP library to generate YouTube-like ids from numbers. Use it when you don't want to expose your database ids to the user.
https://hashids.org/php
MIT License
5.28k stars 418 forks source link

different number same result #114

Closed galamz closed 6 years ago

galamz commented 6 years ago

code

       $data[1] = Hashids::encode(215);
        $data[2] = Hashids::encode(1315);

        return $data;

result {"1":"qOWyZxRAb9Y6aJ0waL3gBo4VzPXKlM7N2Q","2":"qOWyZxRAb9Y6aJ0wal3gBo4VzPXKlM7N2Q"}

vinkla commented 6 years ago

Hey @galamz, thanks for reaching out! Please open a pull request with failing unit tests.