php短网址生成方法实例代码
短网址或短链接,大部分微博、手机邮件提醒等地方已经有很多应用模式了,并占据了一定的市场。
估计很多朋友现在也正在使用。看过新浪的短连接服务,发现后面主要有6个字符串组成,即短网址。
之前介绍过php短链接、短网址、短url的实现代码,大家可以参考下,以了解php短网址的生成原理。
这里介绍三种生成短网址的方法:
<?php
//纯随机生成方法
function random($length, $pool = '')
{
$random = '';
if (empty($pool)) {
$pool = 'abcdefghkmnpqrstuvwxyz';
$pool .= '23456789';
}
srand ((double)microtime()*1000000);
for($i = 0; $i < $length; $i++)
{
$random .= substr($pool,(rand()%(strlen ($pool))), 1);
}
return $random;
}
$a=random(6);
print_r($a);
// 枚举生成方法
function shorturl($input) {
$base32 = array (
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
"u", "v", "w", "x", "y", "z",
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j",
"k", "l", "m", "n", "o", "p", "q", "r", "s", "t",
"u", "v", "w", "x", "y", "z"
);
$hex = md5($input);
$hexlen = strlen($hex);
$subhexlen = $hexlen / 8;
$output = array();
for ($i = 0; $i < $subhexlen; $i++) {
$subhex = substr ($hex, $i * 8, 8);
$int = 0x3fffffff & (1 * ('0x'.$subhex));
$out = '';
for ($j = 0; $j < 6; $j++) {
$val = 0x0000001f & $int;
$out .= $base32[$val];
$int = $int >> 5;
}
$output[] = $out;
}
return $output;
}
$a=shorturl("http://www.jb200.com");
print_r($a);
//62 位生成方法
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://www.jb200.com/");
?>