mirror of
https://github.com/v2board/v2board.git
synced 2025-06-12 12:37:54 +08:00
update send email verify ttl 300 sec
This commit is contained in:
@ -4,5 +4,16 @@ namespace App\Utils;
|
||||
|
||||
class CacheKey
|
||||
{
|
||||
CONST KEYS = [
|
||||
'EMAIL_VERIFY_CODE' => '邮箱验证吗',
|
||||
'LAST_SEND_EMAIL_VERIFY_TIMESTAMP' => '最后一次发送邮箱验证码时间'
|
||||
];
|
||||
|
||||
public static function get(string $key, $uniqueValue)
|
||||
{
|
||||
if (!in_array($key, array_keys(self::KEYS))) {
|
||||
abort(500, 'key is not in cache key list');
|
||||
}
|
||||
return $key . '_' . $uniqueValue;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user