RedisEnum.php
862 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace app\common\enum;
/**
* 缓存名称枚举类
* Class RedisEnum
* @package app\common\enum
*/
class RedisEnum extends EnumBasics
{
// 权限 urls
const API_URLS = 'api_urls';
// 缓存模块,无需验证 urls
const API_URLS_ALLOW_TABLE = 'api_urls';
const API_URLS_ALLOW_KEY = 'cgi_allow';
const API_URLS_ALLOW_HASH = API_URLS_ALLOW_TABLE . ':' . API_URLS_ALLOW_KEY;
// 缓存模块,无需验证 urls
const API_IPS_ALLOW_TABLE = 'api_urls';
const API_IPS_ALLOW_KEY = 'cgi_allow';
const API_IPS_ALLOW_HASH = API_IPS_ALLOW_TABLE . ':' . API_IPS_ALLOW_KEY;
/**
* 获取枚举数据
* @return array
*/
public static function data()
{
return [
self::API_URLS => [
'name' => '权限 URL',
'value' => self::API_URLS,
]
];
}
}