![]() |
|
|||||||
| 代码交流 ASP,PHP,JSP等网站源代码下载与交流。 |
![]() |
|
|
Thread Tools | Display Modes |
|
#1
IP: 218.85.132.244
|
|||
|
|||
|
/*随机生成字符串函数random
$length生成字符串的长度 */ function random($length) { $hash = ''; $chars = '0123456789'; $max = strlen($chars) - 1; mt_srand((double)microtime() * 1000000); for($i = 0; $i < $length; $i++) { $hash .= $chars[mt_rand(0, $max)]; } return $hash; } echo random(6); |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|