PHP自带的md5()函数,生成的是32位长度的字符串。 16位的话,也很简单:

substr(md5($str), 8, 16);

直接截取即可。 方法参考自:https://www.cnblogs.com/52php/p/5669970.html[……]

阅读全文