欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php生成短网址|两种实现方式

程序员文章站 2022-03-21 19:53:49
...
> 5;
        }
 
        $output[] = $out;
    }
 
    return $output;
}
 
 
function shortUrl2($url){
    $result = sprintf("%u",crc32($url));
    $show = '';
    while($result  >0){
        $s = $result % 62;
        if($s > 35){
            $s=chr($s+61);
        }elseif($s>9 && $s