当前位置:Gxlcms > PHP教程 > 一个php短网址的生成代码(仿微博短网址)_php技巧

一个php短网址的生成代码(仿微博短网址)_php技巧

时间:2021-07-01 10:21:17 帮助过:21人阅读

分享一个php短网址的生成代码。
代码如下:





urlShort





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<=35){
$s = chr($s + 55);
} www.gxlcms.com
$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'])."");

人气教程排行