冷光源简介
更新整理时间:2013-09-04 13:58:55 信息浏览 次
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