Home  >  Article  >  Backend Development  >  征集常用的PHP简单代码

征集常用的PHP简单代码

WBOY
WBOYOriginal
2016-06-13 12:43:49940browse

收集常用的PHP简单代码

对于日常工作中整理出来的某些功能做个简单梳理:

?

1. 短链生成算法

function code62($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 shorturl($url) {
	$url = crc32($url);
	$result = sprintf("%u", $url);
	//return $url;
	//return $result;
	return code62($result);
}

br( shorturl("http://pai.game.weibo.com/love/") );
br( shorturl("http://www.oschina.net/code/snippet_878945_22499") );

?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn