php 如何获取指定长度的hash


需求:获取指定长度的hash,比如4位、8位长度
要求:

  1. 最大避免hash冲撞
  2. 执行效率高

php hash

KK丨无限逍遥 11 years, 10 months ago

改进后的: substr(md5(uniqid(rand(),true)),6);

这样呢?

大海中的眼淚 answered 11 years, 10 months ago

Your Answer