12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace app\common\library;
- use Hashids\Hashids;
- class IntCode
- {
- private static $hasids = null;
- /**
- * 初始化
- * @access public
- * @return Hashids
- */
- public static function hashids()
- {
- if (is_null(self::$hasids)) {
- $config = get_addon_config('shop');
- $key = $config['coupon_key'];
- $key = $key ? $key : config('token.key');
- self::$hasids = new Hashids($key, 4);
- }
- return self::$hasids;
- }
- public static function encode($int)
- {
- return self::hashids()->encode($int);
- }
- public static function decode($str)
- {
- $data = self::hashids()->decode($str);
- if (isset($data[0])) {
- return $data[0];
- }
- return null;
- }
- }
|