教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 PHP网址缩短代码(生成短网址)

PHP网址缩短代码(生成短网址)

发布时间:2016-10-26   编辑:jiaochengji.com
教程集为您提供PHP网址缩短代码(生成短网址)等资源,欢迎您收藏本站,我们将为您提供最新的PHP网址缩短代码(生成短网址)资源
短网址现在用得比较多很多跳转网站都会生成,像现原微博也有这个功能,下面我来给大家推荐一款PHP网址缩短代码

每个网址用6个字符代替,(32^6) 最多可以拥有1,073,741,824个短网址。当然,你还可以记录更详细的信息,如访问记录,创建时间等。如果真不够用了,还可以删掉很久不用的。

<table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy5849')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id=copy5849>

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;

}


Sample code to test/use the above function:

$input = 'http://www.jiaochengji.com /1';

$output = shorturl($input);


echo "Input  : $inputn";

echo "Output : {$output[0]}n";

echo "         {$output[1]}n";

echo "         {$output[2]}n";

echo "         {$output[3]}n";

echo "n";


$input = 'http://www.jiaochengji.com /2';

$output = shorturl($input);


echo "Input  : $inputn";

echo "Output : {$output[0]}n";

echo "         {$output[1]}n";

echo "         {$output[2]}n";

echo "         {$output[3]}n";

echo "n";


Output:

Input : http://www.jiaochengji.com /1

Output : h0xg4r

bdr3tw

osk2d3

4azfqa


Input : http://www.jiaochengji.com /2

Output : tm5kxb

ceoj2s

yw3dvl

nrmrxl

您可能感兴趣的文章:
php微博短网址算法 php生成短网址的实现代码
php生成短网址的思路与实现
php 生成短网址的一例代码
php 短网址的实现代码
php生成短网址示例代码
php生成短网址的简单代码
php生成短网址 仿微博短网址生成代码
php生成短网址不重复
PHP实现百度、网易、新浪短网址服务的API接口调用
用PHP实现URL转换短网址的算法示例

[关闭]
~ ~