util.php 607 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: stanley-king
  5. * Date: 16/4/10
  6. * Time: 下午11:17
  7. */
  8. namespace bonus;
  9. function make_sn()
  10. {
  11. if(isset($_SESSION['member_id']) && !empty((int) $_SESSION['member_id'])) {
  12. return mt_rand(10,99)
  13. . sprintf('%010d',time() - 946656000)
  14. . sprintf('%03d', (float) microtime() * 1000)
  15. . sprintf('%03d', (int) $_SESSION['member_id'] % 1000);
  16. } else {
  17. return mt_rand(10,99)
  18. . sprintf('%010d',time() - 946656000)
  19. . sprintf('%03d', (float) microtime() * 1000)
  20. . sprintf('%03d', mt_rand(100,999));
  21. }
  22. }