根據使用者編號生成邀請碼

zccxvas110發表於2020-11-20
class InviteCodeService
{

    protected $key,$num,$codeLength;
    public function __construct()
    {
        // 注意這個key裡面不能出現數字0  否則當 求模=0 會重複的
        $this->key = 'qewrtyup6789';
        //邀請碼的長度 不足補零
        $this->codeLength = 6;
        // 多少進位制
        $this->num = strlen($this->key);
    }

    // 傳遞使用者id生成唯一邀請碼
    public function enCode(int $user_id)
    {

        $code = ''; // 邀請碼
        while ($user_id > 0) { // 轉進位制
            $mod = $user_id % $this->num; // 求模
            $user_id = ($user_id - $mod) / $this->num;
            $code = $this->key[$mod] . $code;
        }

        $code = str_pad($code, $this->codeLength, '0', STR_PAD_LEFT); // 不足用0補充
        return $code;
    }


    // 邀請碼獲取使用者id  一般都不需要用到
    function deCode($code)
    {

        if (strrpos($code, '0') !== false)
        $code = substr($code, strrpos($code, '0') + 1);
        $len = strlen($code);
        $code = strrev($code);
        $user_id = 0;
        for ($i = 0; $i < $len; $i++)
        $user_id += strpos($this->key, $code[$i]) * pow($this->num, $i);
        return $user_id;
    }


}
$inviteCode = new InviteCodeService();
$encode =  $inviteCode->enCode(123456);
$decode =  $inviteCode->deCode($encode);

echo $encode.'-'.$decode;
//0y9ytq-123456

之前網上查到的看著還不錯記錄下

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章