12345678910111213141516171819 |
- <?php
- return [
- //token 有效期
- 'token_exp' => 6, //6小时
- //token超时多久可自动续期(后台)
- 'token_valid_exp' => 30, //30分钟
- //token超时多久可自动续期(用户)
- 'user_token_valid_exp' => 60 * 24 * 7, //7天
- //登录验证码有效期
- 'captcha_exp' => 30, //30分钟
- 'admin_prefix' => 'admin',
- 'merchant_prefix' => 'merchant',
- 'api_admin_prefix' => 'sys',
- 'api_merchant_prefix' => 'mer'
- ];
|