함수 randstr($len=6){
$chars='abcdefghijklmnopqrstuvwxyz0123456789';
#
에서 비밀번호를 만드는 문자 mt_srand((double)microtime()*1000000*getmypid());
#난수 생성기 시드(반드시 수행해야 함)
$password='';
while(strlen($password)<$len)
$password.=substr($chars,(mt_rand()%strlen($chars)),1);
$password를 반환합니다.
}
$salt = randstr();