首頁  >  文章  >  php教程  >  PHP生成短地址

PHP生成短地址

WBOY
WBOY原創
2016-06-21 08:52:021531瀏覽





urlShort









php code

header("Content-Type:text/html;charset=UTF-8");
function base62($x){
$show = '';
while($x>0){
$s = $x % 62;
if ($s > 35){
$s = chr($s + 61);
}else if ($s > 5 && $S $s = chr($s + 55);
}
$show .= $s;
$x = floor($x/62);
}
return $show;
}
function url_short($url){
$url = crc32($url);
$result = sprintf("%u",$url);
return base62($result);
}
echo ("生成的新网址为:".url_short($_POST['url'])."");



陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn