php微博短网址算法 php生成短网址的实现代码

发布时间:2020-10-07编辑:脚本学堂
一个php生成短网址的代码,类似微博短网址的实现代码,挺不错的,感兴趣的朋友参考下。

例子,网上转载的php短网址生成代码。
 

复制代码 代码示例:

<?php
//php生成短网址
function code62($x) {
$show = '';
while($x > 0) {
  $s = $x % 62;
  if ($s > 35) {
    $s = chr($s+61);
  } elseif ($s > 9 && $s <=35) {
    $s = chr($s + 55);
  }
  $show .= $s;
  $x = floor($x/62);
}
return $show;
}
 
function shorturl($url) {
   $url = crc32($url);
   $result = sprintf("%u", $url);
   //return $url;
   //return $result;
   return code62($result);
}

echo shorturl("http://www.jb200.com/tags/phpduanwangzhi.html");
?>