生成短网址
时间:2011-11-06 09:08来源: 作者: 点击:
次
?php function base62( $x ) { $show =
- <?php
- 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.google.com/p/rfphp4zf");
(责任编辑:admin) |
织梦二维码生成器
------分隔线----------------------------