• 数字ID和字符串ID互相转化


    对于想隐藏真实id的需求,比如想加密userId等
    使用示例:

    	 * 不指定长度
         * AlphaIDCustom(12354);  //会将数字转换为字母。
         * AlphaIDCustom('PpQXn7COf',true);//会将字母ID转换为对应的数字。
         * 指定长度
         * AlphaIDCustom(123456,false,6);//指定生成字母ID的长度为6.
         * AlphaIDCustom('xyMSSI',ture,6);//会将字母ID转换为对应的数字.
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    源码:

        /**
         * 数字ID和字符串ID互相转换
         * 如:
         * 不指定长度
         * AlphaIDCustom(12354);  //会将数字转换为字母。
         * AlphaIDCustom('PpQXn7COf',true);//会将字母ID转换为对应的数字。
         * 指定长度
         * AlphaIDCustom(123465,false,6);//指定生成字母ID的长度为6.
         * AlphaIDCustom('xyMSSI',ture,6);//会将字母ID转换为对应的数字.
         * @param $in
         * @param false $to_num 是否转成数字
         * @param false $pad_up 长度限制
         * @param null $passKey 加密
         * @return false|string
         */
        function AlphaIDCustom($in, $to_num = false, $pad_up = false, $passKey = null)
        {
    //        $index = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
            //乱序
            $index = 'SITEQZFyWtpPjRxVYc7uL094bOA8rDCBMmgki23XJnsfHd5oqNwzhUlGKave61';
    
            if ($passKey !== null) {
    
                for ($n = 0; $n<strlen($index); $n++) {
                    $i[] = substr( $index,$n ,1);
                }
    
                $passhash = hash('sha256',$passKey);
                $passhash = (strlen($passhash) < strlen($index))
                    ? hash('sha512',$passKey)
                    : $passhash;
    
                for ($n=0; $n < strlen($index); $n++) {
                    $p[] =  substr($passhash, $n ,1);
                }
    
                array_multisort($p,  SORT_DESC, $i);
                $index = implode($i);
            }
    
            $base  = strlen($index);
    
            if ($to_num) {
                // Digital number  <<--  alphabet letter code
                $in  = strrev($in);
                $out = 0;
                $len = strlen($in) - 1;
                for ($t = 0; $t <= $len; $t++) {
                    $bcpow = bcpow($base, $len - $t);
                    $out   = $out + strpos($index, substr($in, $t, 1)) * $bcpow;
                }
    
                if (is_numeric($pad_up)) {
                    $pad_up--;
                    if ($pad_up > 0) {
                        $out -= pow($base, $pad_up);
                    }
                }
                $out = sprintf('%F', $out);
                $out = substr($out, 0, strpos($out, '.'));
            } else {
                // Digital number  -->>  alphabet letter code
                if (is_numeric($pad_up)) {
                    $pad_up--;
                    if ($pad_up > 0) {
                        $in += pow($base, $pad_up);
                    }
                }
    
                $out = "";
                for ($t = floor(log($in, $base)); $t >= 0; $t--) {
                    $bcp = bcpow($base, $t);
                    $a   = floor($in / $bcp) % $base;
                    $out = $out . substr($index, $a, 1);
                    $in  = $in - ($a * $bcp);
                }
                $out = strrev($out); // reverse
            }
    
            return $out;
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
  • 相关阅读:
    手把手教您Dom4j的使用
    QOne、QData开关机操作
    [Mysql]数据库约束
    7.java三大特征之一:多态
    前端技能树,面试复习第 56 天—— LeetCode 算法常考题型 | 百题大战
    跨境电商运营的新趋势:自养号测评补单技术解析
    自定义注解之数组与逗号拼接字符串自动转化
    cxf反向根据.net wsdl内容生成服务器端代码
    tidb-cdc同步到kafka报错cdc报错CDC:ErrKafkaNewSaramaProducer
    cURL作者狂怼某500强公司,开源维护者是否应当“白打工”?
  • 原文地址:https://blog.csdn.net/weixin_39618723/article/details/133957977