VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP数字和字符串ID互转函数(类似优酷ID)

这篇文章主要介绍了PHP数字和字符串ID互转函数,生成的字符串ID类似优酷的视频ID,像一个加密过的数字ID,本文函数可以在数字ID和字符串ID间相互转换,需要的朋友可以参考下。

不知道你注意了没有,类似优酷、腾讯视频等其他视频链接似乎类似这样的,代码如下:

http://v.youku.com/v_show/id_XNjA5MjE5OTM2.html

注意id_xxx那段,是不是看不懂了,但你无可否认这个就是id,这不国外的一位牛人早在09年就写了针对PHP/Python/Javascript/Java/SQL的生成方法,可见我现在是多么的落伍,下面我把代码贴出来,希望分享精神永存,代码如下:

  1. <?php 
  2. /**  
  3.  * @author   Kevin van Zonneveld <kevin@vanzonneveld.net> 
  4.  * @author   Simon Franz 
  5.  * @author   Deadfish 
  6.  * @copyright 2008 Kevin van Zonneveld (http://kevin.vanzonneveld.net) 
  7.  * @license   http://www.opensource.org/licenses/bsd-license.php New BSD Licence 
  8.  * @version   SVN: Release: $Id: alphaID.inc.php 344 2009-06-10 17:43:59Z kevin $ 
  9.  * @link   http://kevin.vanzonneveld.net/ 
  10.  * 
  11.  * @param mixed   $in      String or long input to translate 
  12.  * @param boolean $to_num  Reverses translation when true 
  13.  * @param mixed   $pad_up  Number or boolean padds the result up to a specified length 
  14.  * @param string  $passKey Supplying a password makes it harder to calculate the original ID 
  15.  * 
  16.  * @return mixed string or long 
  17.  */ 
  18. function alphaID($in$to_num = false, $pad_up = false, $passKey = null) 
  19.   $index = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  20.   if ($passKey !== null) { 
  21.       // Although this function's purpose is to just make the 
  22.       // ID short - and not so much secure, 
  23.       // with this patch by Simon Franz (http://blog.snaky.org/) 
  24.       // you can optionally supply a password to make it harder 
  25.       // to calculate the corresponding numeric ID 
  26.  
  27.       for ($n = 0; $n<strlen($index); $n++) { 
  28.           $i[] = substr$index,$n ,1); 
  29.       } 
  30.  
  31.       $passhash = hash('sha256',$passKey); 
  32.       $passhash = (strlen($passhash) < strlen($index)) 
  33.           ? hash('sha512',$passKey
  34.           : $passhash
  35.  
  36.       for ($n=0; $n < strlen($index); $n++) { 
  37.           $p[] =  substr($passhash$n ,1); 
  38.       } 
  39.  
  40.       array_multisort($p,  SORT_DESC, $i); 
  41.       $index = implode($i); 
  42.   } 
  43.  
  44.   $base  = strlen($index); 
  45.  
  46.   if ($to_num) { 
  47.       // Digital number  < 0) { 
  48.               $out -= pow($base$pad_up); 
  49.           } 
  50.       } 
  51.       $out = sprintf('%F'$out); 
  52.       $out = substr($out, 0, strpos($out'.')); 
  53.   } else { 
  54.       // Digital number  -->>  alphabet letter code 
  55.       if (is_numeric($pad_up)) { 
  56.           $pad_up--; 
  57.           if ($pad_up > 0) { 
  58.               $in += pow($base$pad_up); 
  59.           } 
  60.       } 
  61.  
  62.       $out = ""
  63.       for ($t = floor(log($in$base)); $t >= 0; $t--) { 
  64.           $bcp = bcpow($base$t); 
  65.           $a   = floor($in / $bcp) % $base
  66.           $out = $out . substr($index$a, 1); 
  67.           $in  = $in - ($a * $bcp); 
  68.       } 
  69.       $out = strrev($out); // reverse 
  70.   } 
  71.  
  72.   return $out

使用举例,代码如下:

alphaID(9007199254740989);

执行结果将被返回“fE2XnNGpF”,我们可以把它认为是加密,进行反解密则,代码如下:

alphaID('fE2XnNGpF', true);

那么就转换成真实的数字“9007199254740989”。方法还可以支持使用key进行加密,使得别人无法解得你真实的ID。

出处:http://www.phpfensi.com/php/20210303/13832.html

 


相关教程