Home >Backend Development >PHP Tutorial >php 如何获取指定长度的hash

php 如何获取指定长度的hash

WBOY
WBOYOriginal
2016-06-06 20:49:291433browse

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

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

回复内容:

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

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

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

这样呢?

以4位为例,总共有62 *62 *62 *62=14776336种结果(62=26个英文大小写加十个数字) 所以出现哈希冲突的概率是很大的。当然不是说就不能用四位哈希,假如你需要哈希的值的个数少于这个结果完全可以用四位哈希而。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn