KeyHelper.php 769 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace common\helpers;
  3. /**
  4. * Created by PhpStorm.
  5. * Author: libingke
  6. * Date: 2018/2/1
  7. */
  8. class KeyHelper
  9. {
  10. /**
  11. * [生成唯一Id]
  12. * @author: libingke
  13. * @return string
  14. */
  15. public static function getUniqueId($addStr = '')
  16. {
  17. $sugar = is_string($addStr) && $addStr != '' ? $addStr : '';
  18. return md5(uniqid(md5(microtime(true)),true) . $sugar);
  19. }
  20. public static function getMessageStatusKey($id, $queue)
  21. {
  22. if (is_string($queue) && is_string($id)) {
  23. return "queue:{$queue}:message:{$id}:status";
  24. }
  25. return null;
  26. }
  27. public static function getMessageResultKey($id, $queue)
  28. {
  29. if (is_string($queue) && is_string($id)) {
  30. return "queue:{$queue}:message:{$id}:result";
  31. }
  32. return null;
  33. }
  34. }