1234567891011121314151617181920212223 |
- <?php
- /**
- * Created by PhpStorm.
- * User: dell
- * Date: 2016/2/18
- * Time: 17:47
- */
- class func
- {
- // 生成验证码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;
- }
- }
|