[ajuda]udb_has para php
#1

Boa noite,

Estou fazendo um painel simples de usuarios em php.

Alguém poderia me auxiliar em transformar a função:

Код:
stock udb_hash(buf[]) { //Credits to Dracoblue
    new length=strlen(buf);
    new s1 = 1;
    new s2 = 0;
    new n;
    for (n=0; n<length; n++)
    {
       s1 = (s1 + buf[n]) % 65521;
       s2 = (s2 + s1)     % 65521;
    }
    return (s2 << 16) + s1;
}
Para uma função compatível com php?
Reply


Messages In This Thread
[ajuda]udb_has para php - by Yaakin - 21.08.2012, 00:35
Re: [ajuda]udb_has para php - by Etton - 21.08.2012, 00:37
Re: [ajuda]udb_has para php - by Jason` - 21.08.2012, 02:06

Forum Jump:


Users browsing this thread: 1 Guest(s)