8 lines
126 B
PHP
8 lines
126 B
PHP
<?php
|
|
function createPassword($n,$alphabet) {
|
|
$length = strlen($alphabet);
|
|
$password = "";
|
|
return $password;
|
|
}
|
|
?>
|