生成随机字符串,包含大写、小写字母、数字php代码
function randstr( $length ) { $hash = '' ; $chars = 'abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz' ; $max = strlen ( $chars ) - 1; mt_srand((double)microtime() * 1000000); for ( $i = 0; $i < $length ; $i ++) { $hash .= $chars [mt_rand(0, $max )]; } return $hash ; }查看更多关于生成随机字符串,包含大写、小写字母、数字php代的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did30853