php產生固定長度純數字編碼的方法

來源:互聯網
上載者:User

本文執行個體講述了php產生固定長度純數字編碼的方法。分享給大家供大家參考。具體如下:

很多時候我們需要一些固定長度的數字編碼,如訂單編號、卡號、使用者編號等等!但是經常我們有的是儲存在資料庫中的有序編號,我們可以通過它直接轉成一個固定長度的數字編碼,然後更新到資料庫中形成此記錄的唯一編號。

  1. /**
  2. * 根據日期或者是給定首碼產生唯一編號
  3. * User: minyifei.cn
  4. * Date: 15/7/7
  5. */
  6. namespace Minyifei\Libs;
  7. class SequenceNumber {
  8. /**
  9. * 根據顯示寬度擷取指定的 mapbit
  10. *
  11. * @param integer $width 編號顯示寬度
  12. *
  13. * @return array
  14. */
  15. private static function _getMapbit($width)
  16. {
  17. $mapBits = array(
  18. 4=>array(
  19. 10, 2, 11, 3, 0, 1, 9, 7, 12, 6, 4, 8, 5,
  20. ),
  21. 5=>array(
  22. 4, 3, 13, 15, 7, 8, 6, 2, 1, 10, 5, 12, 0, 11, 14, 9,
  23. ),
  24. 6=>array(
  25. 2, 7, 10, 9, 16, 3, 6, 8, 0, 4, 1, 12, 11, 13, 18, 5, 15, 17, 14,
  26. ),
  27. 7=>array(
  28. 18, 0, 2, 22, 8, 3, 1, 14, 17, 12, 4, 19, 11, 9, 13, 5, 6, 15, 10, 16, 20, 7, 21,
  29. ),
  30. 8=>array(
  31. 11, 8, 4, 0, 16, 14, 22, 7, 3, 5, 13, 18, 24, 25, 23, 10, 1, 12, 6, 21, 17, 2, 15, 9, 19, 20,
  32. ),
  33. 9=>array(
  34. 24, 23, 27, 3, 9, 16, 25, 13, 28, 12, 0, 4, 10, 18, 11, 2, 17, 1, 21, 26, 5, 15, 7, 20, 22, 14, 19, 6, 8,
  35. ),
  36. 10=>array(
  37. 32, 3, 1, 28, 21, 18, 30, 7, 12, 22, 20, 13, 16, 15, 6, 17, 9, 25, 11, 8, 4, 27, 14, 31, 5, 23, 24, 29, 0, 10, 19, 26, 2,
  38. ),
  39. 11=>array(
  40. 9, 13, 2, 29, 11, 32, 14, 33, 24, 8, 27, 4, 22, 20, 5, 0, 21, 25, 17, 28, 34, 6, 23, 26, 30, 3, 7, 19, 16, 15, 12, 31, 1, 35, 10, 18,
  41. ),
  42. 12=>array(
  43. 31, 4, 16, 33, 35, 29, 17, 37, 12, 28, 32, 22, 7, 10, 14, 26, 0, 9, 8, 3, 20, 2, 13, 5, 36, 27, 23, 15, 19, 34, 38, 11, 24, 25, 30, 21, 18, 6, 1,
  44. ),
  45. );
  46. return $mapBits[intval($width)];
  47. }
  48. /**
  49. * 格式化給定時間戳記
  50. *
  51. * @param integer $ts timestamp, if null use current timestamp
  52. *
  53. * @return string
  54. */
  55. private static function _fmtTS($ts=null)
  56. {
  57. $ts = $ts ?: time();
  58. return date(self::$_fmt, $ts);
  59. }
  60. /**
  61. * 根據id擷取一個隨機唯一編碼
  62. * @param $id 編號
  63. * @param int $prefix 首碼
  64. * @param int $width 除首碼外長度
  65. * @return string
  66. */
  67. public static function generateNumber($id,$prefix=10,$width=8)
  68. {
  69. return sprintf("%s%s", $prefix,self::encode($id, $width));
  70. }
  71. /**
  72. * 編碼轉換
  73. *
  74. * @param integer $id id
  75. * @param integer $width 編號額外組成部分的顯示寬度
  76. *
  77. * @return integer
  78. */
  79. public static function encode($id, $width)
  80. {
  81. $maximum = intval(str_repeat(9, $width));
  82. $superscript = intval(log($maximum) / log(2));
  83. $r = 0;
  84. $sign = 0x1 << $superscript;
  85. $id |= $sign;
  86. $mapbit = self::_getMapbit($width);
  87. for ($x = 0; $x < $superscript; $x++) {
  88. $v = ($id >> $x) & 0x1;
  89. $r |= ($v << $mapbit[$x]);
  90. }
  91. $r += $maximum - pow(2, $superscript) + 1;
  92. return sprintf("%0${width}s", $r);
  93. }
  94. /**
  95. * 擷取唯一編號
  96. *
  97. * @param integer $id id, mostly database primary key
  98. * @param integer $width 編號顯示寬度
  99. * @param integer $ts timestamp
  100. *
  101. * @return string
  102. */
  103. public static function get($id, $width, $ts=null)
  104. {
  105. return sprintf('%s%s', self::_fmtTS($ts), self::encode($id, $width));
  106. }
  107. }
複製代碼

希望本文所述對大家的php程式設計有所協助。

php
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.