Hashids的yii2封装

本文阅读大概需要 1 分钟

关于Hashids

Hashids 是一个将数字生成唯一且不连续的短码的库, 被封装了好多语言版本的库。

详细: http://hashids.org/php/

使用

1
2
3
4
5
6
7
$hashids = Yii::createObject([
'class' => 'light\hashids\Hashids'
]);

$id = $hashids->encode(100123123);
$origin = $hashids->decode($id);
var_dump($id, $origin);

详细