PHP 字符串转 bigint 型md5

Posted ノGHJ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 字符串转 bigint 型md5相关的知识,希望对你有一定的参考价值。

1
2
3
4
5
6
7
8
/**
     * 字符串转bigint
     * @return bigint(string)
     */
    public function md5($str)
    {
        return base_convert(substr(md5($str), 0, 15) , 16, 10);//支持16位  注意,  里面的15可以改的短一些不同机器的精度是不同的.
    }

以上是关于PHP 字符串转 bigint 型md5的主要内容,如果未能解决你的问题,请参考以下文章