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

php生成短网址示例代码

程序员文章站 2022-06-03 21:36:10
...
  1. function base62($x)
  2. {
  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 urlShort($url)
  16. {
  17. $url = crc32($url);
  18. $result = sprintf("%u", $url);
  19. return base62($result);
  20. }
  21. echo urlShort("http://code.google.com/p/rfphp4zf");
复制代码

以上分享的php短网址的生成代码,希望对大家有所帮助。