Helper.php 307 B

123456789101112131415161718192021
  1. <?php
  2. namespace common\helpers;
  3. /**
  4. * Created by PhpStorm.
  5. * Author: libingke
  6. * Date: 2018/2/1
  7. */
  8. class Helper
  9. {
  10. /**
  11. * [生成唯一Id]
  12. * @author: libingke
  13. * @return string
  14. */
  15. public static function getUniqueId()
  16. {
  17. return md5(uniqid(md5(microtime(true)),true));
  18. }
  19. }