ShortUrl短网址算法 PHP版本

ShortUrl短网址算法 PHP版本


1、将长网址md5生成32位签名串,分为4段, 每段8个字节;
2、对这四段循环处理, 取8个字节, 将他看成16进制串与0x3fffffff(30位1)与操作, 即超过30位的忽略处理;
3、这30位分成6段, 每5位的数字作为字母表的索引取得特定字符, 依次进行获得6位字符串;
4、总的md5串可以获得4个6位串; 取里面的任意一个就可作为这个长url的短url地址;
存储数据库使用TTServer等Nosql比较合适。

PHP示例如下:

function shorturl($input) {
	$base32 = array (
			'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', '0', '1', '2', '3', '4', '5'
	);
	 
	$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;
}

function mysqltest(){
	$input = 'http://www.dula.la/xiaohua_357984.html';
	$output = shorturl($input);
	
	echo "Input  : $input\n";
	echo "Output : {$output[0]}\n";
	echo "         {$output[1]}\n";
	echo "         {$output[2]}\n";
	echo "         {$output[3]}\n";
	echo "\n";
	
	$input = 'http://www.dula.la/video.html';
	$output = shorturl($input);
	
	echo "Input  : $input\n";
	echo "Output : {$output[0]}\n";
	echo "         {$output[1]}\n";
	echo "         {$output[2]}\n";
	echo "         {$output[3]}\n";
	echo "\n";
}

打印结果如下:

Input  : http://www.dula.la/xiaohua_357984.html
Output : mzevih
         bjcwih
         mkblxs
         05f5o4

Input  : http://www.dula.la/video.html
Output : xnkxn4
         c2x2dr
         4tqmru
         rgc55x

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值