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

一个php短网址的生成代码(仿微博短网址)_PHP教程

程序员文章站 2022-06-05 13:26:35
...
分享一个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$s = chr($s + 55);
} www.jbxue.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'])."");

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/766109.htmlTechArticle分享一个php短网址的生成代码。 复制代码 代码如下: !DOCTYPE html html lang="en" head meta charset="utf-8" / titleurlShort/title /head body form action="urlShort.p...
相关标签: 短网址