mirror of
https://github.com/Alamantus/Lexiconga.git
synced 2025-05-25 19:40:06 +02:00
12 lines
No EOL
404 B
PHP
12 lines
No EOL
404 B
PHP
<?php
|
|
// Retrieved from http://stackoverflow.com/a/4356295/3508346
|
|
function Random_String($length = 10) {
|
|
$characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
|
$charactersLength = strlen($characters);
|
|
$randomString = '';
|
|
for ($i = 0; $i < $length; $i++) {
|
|
$randomString .= $characters[rand(0, $charactersLength - 1)];
|
|
}
|
|
return $randomString;
|
|
}
|
|
?>
|