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. {
  20. $index = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  21. if ($passKey !== null) {
  22. // Although this function's purpose is to just make the
  23. // ID short - and not so much secure,
  24. // with this patch by Simon Franz (http://blog.snaky.org/)
  25. // you can optionally supply a password to make it harder
  26. // to calculate the corresponding numeric ID
  27. for ($n = 0; $n<strlen($index); $n++) {
  28. $i[] = substr( $index,$n ,1);
  29. }
  30. $passhash = hash('sha256',$passKey);
  31. $passhash = (strlen($passhash) < strlen($index))
  32. ? hash('sha512',$passKey)
  33. : $passhash;
  34. for ($n=0; $n < strlen($index); $n++) {
  35. $p[] = substr($passhash, $n ,1);
  36. }
  37. array_multisort($p, SORT_DESC, $i);
  38. $index = implode($i);
  39. }
  40. $base = strlen($index);
  41. if ($to_num) {
  42. // Digital number < 0) {
  43. $out -= pow($base, $pad_up);
  44. }
  45. }
  46. $out = sprintf('%F', $out);
  47. $out = substr($out, 0, strpos($out, '.'));
  48. } else {
  49. // Digital number -->> alphabet letter code
  50. if (is_numeric($pad_up)) {
  51. $pad_up--;
  52. if ($pad_up > 0) {
  53. $in += pow($base, $pad_up);
  54. }
  55. }
  56. $out = "";
  57. for ($t = floor(log($in, $base)); $t >= 0; $t--) {
  58. $bcp = bcpow($base, $t);
  59. $a = floor($in / $bcp) % $base;
  60. $out = $out . substr($index, $a, 1);
  61. $in = $in - ($a * $bcp);
  62. }
  63. $out = strrev($out); // reverse
  64. }
  65. return $out;
  66. }

使用举例,代码如下:

alphaID(9007199254740989);

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

alphaID('fE2XnNGpF', true);

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