菜单

Unique Code

2013年11月5日 - php
session_start();

echo $_SESSION['temparray'][] = generateCode();

var_dump($_SESSION['temparray']);

function generateCode(){
    $code = strtoupper(substr(md5(crypt(uniqid(microtime()))), -5));
    if(is_numeric($code)||in_array($code, $_SESSION['temparray'])){
        return generateCode();
    }
    return $code;
}

发表评论

电子邮件地址不会被公开。 必填项已用*标注