Дон Карлос (kastaneda) wrote,
    // creates wellformed password
    
function GeneratePassword() {
        
$consts='bcdgklmnprst';
        
$vowels='aeiou';
        for (
$x=0$x 6$x++) {
            
mt_srand ((double) microtime() * 1000000);
            
$const[$x] = substr($consts,mt_rand(0,strlen($consts)-1),1);
            
$vow[$x] = substr($vowels,mt_rand(0,strlen($vowels)-1),1);
        }
        return 
$const[0] . $vow[0] .$const[2] . $const[1] . $vow[1] . $const[3] . $vow[3] . $const[4];
    }


Смущают меня индексы массива. Что-то тут странное.
Tags: wtf
  • Post a new comment

    Error

    default userpic

    Your reply will be screened

    Your IP address will be recorded  

  • 0 comments