生成短网址

<?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");

posted on 2011-11-04 14:24  imrz  阅读(251)  评论(0)    收藏  举报

导航