欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php生成短网址示例_PHP

程序员文章站 2024-02-05 12:05:34
...
php生成短网址

复制代码 代码如下:
$chars=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",
"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");
$salt="www.joneto.com";
$hash=md5("http://www.sina.com".$salt);
$rs=array();
for($i=0;$i $temp=substr($hash, $i*8,8);
$temp=base_convert($temp, 16, 10) & base_convert("3fffffff", 16, 10);

$str="";
for($j=0;$j $subtemp=$temp & intval(base_convert("3d", 16, 10));
$str.=$chars[$subtemp];
$temp=$temp>>5;
}
unset($temp);
$rs[]=$str;
}
print_r($rs);
?>

相关标签: php生成短网址