mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
20 lines
446 B
PHP
20 lines
446 B
PHP
<?php
|
|
|
|
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;
|
|
}
|
|
}
|