18.08.2015, 15:19
Quote:
Gerador de PIN de 4 digitos
PHP код:
PHP код:
Код:
PIN: 8165 PIN: 2870 PIN: 4395 PIN: 5841 PIN: 1222 PIN: 3622 PIN: 1322 PIN: 4241 PIN: 3535 PIN: 3290 PIN: 1790 PIN: 2389 PIN: 7182 PIN: 7553 PIN: 3818 PIN: 5252 PIN: 3774 PIN: 3591 PIN: 3811 PIN: 4334 PIN: 2846 PIN: 1420 PIN: 5660 PIN: 4414 PIN: 9543 PIN: 7744 PIN: 6168 PIN: 5456 PIN: 5516 PIN: 4145 PIN: 4393 PIN: 3433 PIN: 5855 PIN: 4480 PIN: 5350 PIN: 2654 PIN: 2215 PIN: 8737 ..... |
PHP код:
stock gerarPINv1() return (((random(9) + 1) * 1000) + (random(10) * 100) + (random(10) * 10) + random(10));
#define gerarPINv2() \
(((random(9) + 1) * 1000) + (random(10) * 100) + (random(10) * 10) + random(10))
public OnFilterScriptInit() {
print("GerarPIN v1");
new t = GetTickCount(), pin;
for(new x; x < 100000; x++) {
pin = gerarPINv1();
}
printf("Diferenзa: %ims - Ultimo PIN: %i", GetTickCount() - t, pin);
print("GerarPIN v2");
t = GetTickCount();
for(new x; x < 100000; x++) {
pin = gerarPINv2();
}
printf("Diferenзa: %ims - Ultimo PIN: %i",GetTickCount() - t, pin);
return 1;
}
Код:
GerarPIN v1 Diferenзa: 202ms - Ultimo PIN: 5156 GerarPIN v2 Diferenзa: 199ms - Ultimo PIN: 5899