/**
*
* 生存hashCode
*
*/
function hashCode($str){
if(empty($str))
return '';
$str = strtoupper($str);
$mdv = md5($str);
$mdv1 = substr($mdv,0,16);
$mdv2 = substr($mdv,16,16);
$crc1 = abs(crc32($mdv1));
$crc2 = abs(crc32($mdv2));
return bcmul($crc1,$crc2);
}










相关文章:

  • 2022-12-23
  • 2022-02-16
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-02
  • 2022-12-23
  • 2022-12-23
  • 2022-02-10
  • 2022-12-23
  • 2021-10-12
相关资源
相似解决方案