建网站的公司,
- function base62($x)
- {
- $show = '';
- while($x > 0) {
- $s = $x % 62;
- if ($s > 35) {
- $s = chr($s+61);
- } elseif ($s > 9 && $s <=35) {
- $s = chr($s + 55);
- }
- $show .= $s;
- $x = floor($x/62);
- }
- return $show;
- }
-
- function urlShort($url)
- {
- $url = crc32($url);
- $result = sprintf("%u", $url);
- return base62($result);
- }
-
- echo urlShort("http://code.谷歌.com/p/rfphp4zf");
免责声明:本文内容由互联网用户自发贡献自行上传,本网站也不承担相关的法律责任。如果您发现本文章中有涉嫌抄袭的内容,请发送邮件至:sales@sznetsoft.com或者至电给本网站进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权的内容。