效果
<?php
use Hashids\Hashids;
$hashids = new Hashids(); // no padding
$hashids->encode(1);
#结果
jR
#指定返回10个字符长度的加密串
$hashids = new Hashids('', 10); // pad to length 10
$hashids->encode(1); // VolejRejNm
$hashids...
11-05 3,594 views
效果
<?php
use Hashids\Hashids;
$hashids = new Hashids(); // no padding
$hashids->encode(1);
#结果
jR
#指定返回10个字符长度的加密串
$hashids...