You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
250 B
PHP

<?php
function random_string($length = 5)
{
$chars = 'bcdfghjklmnpqrstvwxyzaeiou';
for ($x = 0; $x < $length; $x++)
{
$result .= ($x%2) ? $chars[mt_rand(19, 23)] : $chars[mt_rand(0, 18)];
}
return $result;
}
echo random_string();
?>