params.php
1.09 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
return [
'adminEmail' => 'admin@example.com',
'supportEmail' => 'support@example.com',
'user.passwordResetTokenExpire' => 3600,
'config'=>[
//所属应用
'app'=>[
1=>'YOHOBuy',
2=>'YOHOMars',
3=>'YOHONow'
],
//是否精选
'best'=>[
0=>'否',
1=>'精选1',
2=>'精选2',
],
//马甲状态
'vest'=>[
0=>'关闭',
1=>'最慢',
2=>'一般',
3=>'最快'
],
//直播状态
'room_living'=>[
0=>'未开始',
1=>'直播中',
2=>'已结束',
],
//未被禁言状态
'un_forbid_stat'=>0,
//被禁言状态
'is_forbid_stat'=>1,
],
/**
* 分页每页数目
*/
'defaultPageSize'=>10,
/**
* 缓存超时时间
*/
'defaultCacheExpire'=>7200,
//成功状态
'success_code'=>200,
//失败状态
'failed_code'=>8001,
//异常状态
'exception_code'=>500
];