123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Created by PhpStorm.
- * User: dell
- * Date: 2016/2/18
- * Time: 17:47
- */
- class func
- {
- const auth_code_expire = 5; // 单位:分钟
- const token_expire = 1200; // 单位:分钟
- // 生成验证码key
- public static function gen_auth_code_key($mobile)
- {
- return 'mobile_auth_code:' . $mobile;
- }
- // 生成token的key
- public static function gen_token_key($token)
- {
- return 'token:' . $token;
- }
- }
|