//Convert full-width characters to half-width characters
function replace_DBC2SBC($str) {
$DBC = Array(
5 ',' 6 ',' 7 ',' 8 ',' 9 ',
' aa ',' b ',' c ',' d ',' e ',
' f ',' g ' , 'H' , 'I' , 'J' ,
'K' , 'L' , 'M' , 'N' , 'O' ,
'P' , 'Q' , 'R' , ' S' , 'T' ,
'U' , 'V' , 'W' , 'X' , 'Y' ,
'Z' , 'a' , 'b' , 'c' , 'd' ,
, 'P', '', 'R', 'S',
'T', 'U', 'V', 'w', 'x',
'y', 'z', 'z', 'z', 'z', 'z', 'z', ' -' , ' ' , ':' ,
'. ' , ', ' , '/' , '%' , '#' ,
'! ' , '@' , '&' , '(' , ')' ,
'<' , '>' , '"' , ''' , '?' ,
'| 0', '1', '2', '3', '4',
'5', '6', '7', '8', '9',
'A', 'B' , 'C', 'D', 'E',
'F', 'G', 'H', 'I', 'J',
'K', 'L', 'M', ' N', 'O',
'P', 'Q', 'R', 'S', 'T',
'U', 'V', 'W', 'X', 'Y'
'Z', 'A', 'B', 'C', 'D',
'E', 'F', 'G', 'H', 'I',
'J' , 'k', 'l', 'm', 'n',
'o', 'p', 'q', 'r', 's',
't', 'u', ' v', 'w', 'x',
'y', 'z', '-', ' ', ':',
'.', ',', '/', '%', '#',
'!', '@', '&', '(', ')',
'<', '>', '"', ''','?',
'~', '`'
);
return str_replace($DBC, $SBC, $str); // Full-width to half-width
}
//Convert characters to ascii code
function asc_encode($c )
{
$len = strlen($c);
$a = 0;
while ($a < $len)
$ud = 0;
if (ord($ c{$a}) >=0 && ord($c{$a})<=127)
: c {$a})-192)*64 + (ord($c{$a+1})-128);
$a += 2; }) >=224 && ord($c{$a})<=239)
{
{$a+1})-128)*64 + (ord($c{$a+2})-128); $a}) >=240 && ord($c{$a})<=247)
$c{$a+1})-128)*4096 + (ord($c{$a+2})-128)*64 + (ord($c{$a+3})-128);
$ud = (ord($c{$a})-248)*16777216 + (ord($c{$a+1})-128)*262144 + (ord($c{$a+2})-128) *4096 + (ord($c{$a+3})-128)*64 + (ord($c{$a+4})-128);
$a += 5;
}
else if (ord($c{$a}) >=252 && ord($c{$a})<=253)
{
$ud = (ord($c{$a})-252)*1073741824 + (ord($c{$a+1})-128)*16777216 + (ord($c{$a+2})-128)*262144 + (ord($c{$a+3})-128)*4096 + (ord($c{$a+4})-128)*64 + (ord($c{$a+5})-128);
$a += 6;
}
else if (ord($c{$a}) >=254 && ord($c{$a})<=255)
{ //error
$ud = 0;
$a++;
}else{
$ud = 0;
$a++;
}
$scill .= "$ud";
}
return $scill;
}
//将字符串转变成hashcode
function hashCode($s){
$arr_str = str_split($s);
$len = count($arr_str);
$hash = 0;
for($i=0; $i<$len; $i++){
if(ord($arr_str[$i])>127){
$ac_str = $arr_str[$i].$arr_str[$i+1].$arr_str[$i+2];
$i+=2;
}else{
$ac_str = $arr_str[$i];
}
$hash = (int)($hash*31 + asc_encode($ac_str));
//64bit下判断符号位
if(($hash & 0x80000000) == 0) {
//正数取前31位即可
$hash &= 0x7fffffff;
}
else{
//负数取前31位后要根据最小负数值转换下
$hash = ($hash & 0x7fffffff) - 2147483648;
}
}
return $hash;
}
以上就介绍了php 字符串转hashcode(包括中文),包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。