Autor Zpráva
Riot
Profil *
Ahoj nič som nenašiel preto píšem :

Chcel by som spraviť na My Dive Art spraviť aby keď stlačiťe Generate zmení sa kód . Ďakujem .
pl
Profil *
google opet nefunguje?

http://www.webtoolkit.info/php-random-password-generator.html
Riot
Profil *
Žeby nefunguje ? Kukni ten web ešte raz !
pl
Profil *
ale funfuje
Riot
Profil *
Pošli screen . Mne nič nejde .
pl
Profil *
... delat screen sem liny tady mas kopii toho kodu

<?php
 
function generatePassword($length=9, $strength=0) {
	$vowels = 'aeuy';
	$consonants = 'bdghjmnpqrstvz';
	if ($strength & 1) {
		$consonants .= 'BDGHJLMNPQRSTVWXZ';
	}
	if ($strength & 2) {
		$vowels .= "AEUY";
	}
	if ($strength & 4) {
		$consonants .= '23456789';
	}
	if ($strength & 8) {
		$consonants .= '@#$%';
	}
 
	$password = '';
	$alt = time() % 2;
	for ($i = 0; $i < $length; $i++) {
		if ($alt == 1) {
			$password .= $consonants[(rand() % strlen($consonants))];
			$alt = 0;
		} else {
			$password .= $vowels[(rand() % strlen($vowels))];
			$alt = 1;
		}
	}
	return $password;
}
 
?>

Vaše odpověď

Mohlo by se hodit


Prosím používejte diakritiku a interpunkci.

Ochrana proti spamu. Napište prosím číslo dvě-sta čtyřicet-sedm:

0