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

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

程序员文章站 2022-06-08 16:49:42
...

php生成短网址|两种实现方式 无 ?php/** * Created by PhpStorm. * User: yangyulong/anziguoer@sina.com * Date: 2015/5/28 * Time: 15:55 */function shortUrl($url){ $base32 = array ( 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',

php生成短网址|两种实现方式
> 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