Questo ti darà una stringa casuale di 8 caratteri:
substr(str_pad(dechex(mt_rand()), 8, '0', STR_PAD_LEFT), -8);
Si trova qui:http://www.richardlord.net/blog/php-password- sicurezza
Oppure, se il campo del nome utente è univoco, puoi utilizzare anche:
substr(md5('username value'), 0, 8);
Sebbene sia estremamente improbabile, in particolare per l'md5, nessuno dei due casi garantisce una stringa univoca, quindi probabilmente farei qualcosa del genere:
// Handle user registration or whatever...
function generatePID($sUsername) {
return substr(md5($sUsername), 0, 8);
}
$bUnique = false;
$iAttempts = 0;
while (!$bUnique && $iAttempts < 10) {
$aCheck = $oDB->findByPID(generatePID("username value")); // Query the database for a PID matching whats generated
if (!$aCheck) { // If nothing is found, exit the loop
$bUnique = true;
} else {
$iAttempts++;
}
}
// Save PID and such...
... che probabilmente produrrebbe solo 1 query di "controllo", forse 2 in casi univoci, e garantirebbe una stringa univoca.