当前位置:Gxlcms > PHP教程 > php生成短网址仿微博短网址生成代码

php生成短网址仿微博短网址生成代码

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

  1. urlShort-php生成短网址_bbs.it-home.org_脚本学堂提供

2,生成php短网址的代码。

  1. header("Content-Type:text/html;charset=UTF-8");
  2. function base62($x){
  3. $show = '';
  4. while($x>0){
  5. $s = $x % 62;
  6. if ($s > 35){
  7. $s = chr($s + 61);
  8. }else if ($s > 5 && $S<=35){
  9. $s = chr($s + 55);
  10. }
  11. $show .= $s;
  12. $x = floor($x/62);
  13. }
  14. return $show;
  15. }
  16. function url_short($url){
  17. $url = crc32($url);
  18. $result = sprintf("%u",$url);
  19. return base62($result);
  20. }
  21. echo ("生成的短网址为:".url_short($_POST['url'])."");

人气教程排行