Home > php教程 > PHP源码 > body text

生成短域名使用的

PHP中文网
Release: 2016-05-26 08:19:16
Original
1246 people have browsed it

跳至

public function createRandCode($string) {
        $code = '';
        $hex_code = '1qaz2wsx3edc4rfv5t-gb6yhn7ujm8ik9ol0p_';
        $now = microtime(true) * 10000;
        $strlen = strlen($hex_code);

        $hash_code = hash('sha256', $string);

        // 这里会为编码定义一个随机的长度,长度取决于step
        $step = rand(8, 16);
        $count = ceil(strlen($hash_code) / $step);

        for($i = 0; $i < $count; $i++) {
            $start = $i * $step;
            $hex_num = substr($hash_code, $start, $step);
            $num = 0x3fffffff & (1 * &#39;0x&#39; . $hex_num);
            $n = $num % $strlen;
            $code .= $hex_code[$n];
        }

        return $code;
    }
Copy after login

                   

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!