util.php 268 B

12345678910111213141516
  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_bonus_sn()
  10. {
  11. return mt_rand(1000,9999)
  12. . sprintf('%010d',time())
  13. . sprintf('%06d', (float) microtime() * 1000000);
  14. }