欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > thinkphp教程 >
thinkphp教程

thinkphp php生成六位随机字母

(元素模板) / 2023-03-08 10:45
如何使用thinkphp 生成六位数字字母?
function create_invite_code(){
        $d = substr(base_convert(md5(uniqid(md5(microtime(true)),true)), 16, 10), 0, 6);
        $w['referral_code'] = array('eq', $d);
        $user_info = Db::name('user')->field("id")->where($w)->find();
        if ($user_info) {
            $this->create_invite_code();
        }

        return $d;
}

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com