12345678910111213141516171819 |
- <?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;
- }
- }
|