生成短连接的另一种方法

来源:互联网 发布:ipad如何清除缓存数据 编辑:程序博客网 时间:2024/05/22 17:23
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<=35){$s=chr($s+55);}$show .= $s;$result = floor($result / 62);}return $show;}