在 PHP 中生成随机激活码

Generate random activation code in PHP

如何根据PHP中的当前日期时间和用户名生成随机激活码。

return 值应该是这样的,即:

201605021955用户名

function getActivationCode($username){
$activationCode = "";        

 ....

return activationCode;
}

您要的不是随机的,而是:

$string = date('YmdHi') . $username;

另请查看 chr function to get a character from a random number (which you can get from mt_rand)。

function getActivationCode($username){
    $activationCode =date('YmdHi').$username;  
    return activationCode;
}