嗨,我想生成仅包含来自的数字的unique
五位数字customer number
0....9
我正在使用这个包:https ://github.com/ivanakimov/hashids.php
我能够生成id
,但它包含alphabet
像 a...z
这就是我的生成方式
$id = 12;
$hashids = new Hashids\HashIds('eabangalore');
return $id = $hashids->encode(1, $id, 99); // output QBsLFJw
但我想输出这样的东西 22345,46643,...等
我怎样才能做到这一点 ??