123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Created by PhpStorm
- * User:林志杰
- * Email:[email protected]
- * Motto:纵有疾风起,人生不言弃!
- * Time:2020/2/8 17:12
- */
- declare(strict_types=1);
- namespace app\common\lib;
- class Str
- {
- /**
- * 生成登陆所需的token
- * @param string $string
- * @return string
- */
- public static function getLoginToken(string $string): string
- {
- $str = md5(uniqid(md5((string)microtime(true)), true)); // 生成一个不会重复的字符串
- return sha1($str . $string); // 加密
- }
- }
|