Mysql
 sql >> Database >  >> RDS >> Mysql

Funzione di hashing PHP che restituisce un numero intero (32 bit int)

Usa crc32 , restituirà un int a 32 bit .

var_dump (crc32 ("hello world"));
var_dump (crc32 ("world hello"));

uscita

int(222957957)
int(1292159901)

PHP:crc32 - Manuale