mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-27 18:10:42 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
d355b952bd
|
|
@ -50,9 +50,10 @@ class Utilities { /* {{{ */
|
||||||
* @return string random string
|
* @return string random string
|
||||||
*/
|
*/
|
||||||
static public function makeRandomString($n, $alph = "0123456789abcdefghijklmnopqrstuvwxyz") { /* {{{ */
|
static public function makeRandomString($n, $alph = "0123456789abcdefghijklmnopqrstuvwxyz") { /* {{{ */
|
||||||
|
$len = strlen($alph)-1;
|
||||||
$s = "";
|
$s = "";
|
||||||
for ($i = 0; $i != $n; ++$i)
|
for ($i = 0; $i != $n; ++$i)
|
||||||
$s .= $alph[mt_rand(0, 35)];
|
$s .= $alph[mt_rand(0, $len)];
|
||||||
return $s;
|
return $s;
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user