首頁  >  文章  >  後端開發  >  php微博短網址演算法 php產生短網址的實作程式碼

php微博短網址演算法 php產生短網址的實作程式碼

WBOY
WBOY原創
2016-07-25 08:54:45999瀏覽
  1. //php生成短网址

  2. function code62($x) {
  3. $show = '';
  4. while($x > 0) {
  5. $s = $x % 62;
  6. if ($s > 35) {
  7. $s = chr($s 61);
  8. } elseif ($s > 9 && $s <=35) {
  9. $s = chr($s 55);
  10. }
  11. $show .= $s;
  12. $x = floor($x/62);
  13. }
  14. return $show;
  15. }
  16. function shorturl($url) {
  17. $url = crc32($url);
  18. $result = sprintf("%u", $url);
  19. //return $url;
  20. //return $result;
  21. return code62($result);
  22. }

  23. echo shorturl("http://bbs.it-home.org/tags/phpduanwangzhi.html");

  24. ?>

复制代码


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn