程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 仿微博php生成短網址,仿微博php

仿微博php生成短網址,仿微博php

編輯:關於PHP編程

仿微博php生成短網址,仿微博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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved