php生成短域名函数
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-17 15:53:19 浏览: 评论:0
短网址流行的已经有一段时间了,以前做新浪微博应用的时候就有接触,但没有搞清楚,最近再次接触到这个东东,仔细研究了下,发现短网址其实也挺容易的。下面就将使用php生成短网址的实现方法做一下记录。
php生成短域名函数
- public function createRandCode($string) {
- $code = '';
- $hex_code = '1qaz2wsx3edc4rfv5t-gb6yhn7ujm8ik9ol0p_';
- $now = microtime(true) * 10000;
- $strlen = strlen($hex_code);
- $hash_code = hash('sha256', $string);
- // 这里会为编码定义一个随机的长度,长度取决于step
- $step = rand(8, 16);
- $count = ceil(strlen($hash_code) / $step);
- for($i = 0; $i < $count; $i++) {
- $start = $i * $step;
- $hex_num = substr($hash_code, $start, $step);
- $num = 0x3fffffff & (1 * '0x' . $hex_num);
- $n = $num % $strlen;
- $code .= $hex_code[$n];
- }
- return $code;
- }
Tags: php生成短域名函数
- 上一篇:php内嵌函数用法实例
- 下一篇:PHP数组相关函数汇总
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)