function random($length, $chars = '0123456789') {
$hash = '';
$max = strlen($chars) - 1;
for($i = 0; $i < $length; $i++) {
$hash .= $chars[mt_rand(0, $max)];
}
return $hash;
}
echo random(20, 'authkey').'
';
echo random(32, 'phpssoauthkey');exit;
?>
Warning: Cannot modify header information - headers already sent by (output started at /data/home/qxu1608230155/htdocs/caches/configs/system.php:14) in /data/home/qxu1608230155/htdocs/phpcms/base.php on line 39
Warning: require_once(/data/home/qxu1608230155/htdocs/phpcms/languages//system.lang.php): failed to open stream: No such file or directory in /data/home/qxu1608230155/htdocs/phpcms/libs/functions/global.func.php on line 332
²ÊƱ¿ìÈý×¢²á