仿微博php生成短网址

Posted roucheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了仿微博php生成短网址相关的知识,希望对你有一定的参考价值。

html code

<!DOCTYPE html>  
<html lang="en">  
<head>  
  <meta charset="utf-8" />  
  <title>urlShort</title>  
</head>  
  
<body>  
  <form action="urlShort.php" method="post">  
    <input type="text" size="16" name="url" value="输入网址" onfocus="if(this.value==\'输入网址\'){this.value=\'\';}" onblur="if(this.value==\'\'){this.value=\'输入网址\'};">  
    <input type="submit" value=" 生成 " />  
  </form>  <a href="http://hovertree.com">何问起</a>
</body>  
</html>  

 php code

<?php  
     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);  
            }  
            $show .= $s;  
            $x = floor($x/62);  
        }  
        return $show;  
    }  /* 何问起 hovertree.com */
      
    function url_short($url){  
        $url = crc32($url);  
        $result = sprintf("%u",$url);   
        return base62($result);  
    }  
      
    echo ("生成的新网址为:<a href=\'http://$_POST[url]\'>".url_short($_POST[\'url\'])."</a>");  
?>

推荐:http://www.cnblogs.com/roucheng/p/3528396.html

以上是关于仿微博php生成短网址的主要内容,如果未能解决你的问题,请参考以下文章

什么是短地址?如何用PHP生成与使用短地址…

新浪微博短网址生成_最新t.cn短链接api分享

t.cn短网址怎么生成?利用新浪短链接转化器生成永久短网址的几种方法

防护恶意网址用短网址欺骗的对策

怎样使用新浪短网址进行网址缩短-推荐15个在线生成工具

新浪短网址链接生成_t.cn短网址api接口(超赞)