欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-20 23:30:05
...
  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 $s = chr($s + 55);
  9. }
  10. $show .= $s;
  11. $x = floor($x/62);
  12. }
  13. return $show;
  14. }
  15. function shorturl($url) {
  16. $url = crc32($url);
  17. $result = sprintf("%u", $url);
  18. //return $url;
  19. //return $result;
  20. return code62($result);
  21. }
  22. echo shorturl("http://bbs.it-home.org/tags/phpduanwangzhi.html");

  23. ?>
复制代码